docs

All functions Legacy functions About function names

vuMailKitInitialize

Purpose

Initialize vuMailKit licensing for the current process.

Call this once at EXE startup and pass the license string generated for the developer. This call enables the licensed feature set for the running process, including Basic, Pro, Back Office, and DEMO licenses.

Export name

Clarion prototype (Inside Global MAP)

Parameters

Parameter Type Description Expected values / range
LicenseString *CSTRING License string to apply for this process. Pass the full license string supplied for the developer. A blank string leaves the process unlicensed.

When to call this

Call vuMailKitInitialize() once before Main or before you open windows that can use vuMailKit.

Typical EXE startup pattern:

This is the normal pattern for:

Return value

Common negative results:

Clarion example

LicenseString            CSTRING(512)
Result                   SIGNED

LicenseString = 'Charles-basic-16123'
Result = vuMailKitInitialize(LicenseString)

Notes

All functions Legacy functions About function names