docs

All functions Legacy functions About function names

vuMailKitGetLicenseInfo

Purpose

Return a human-readable summary of the current vuMailKit license state into a caller-supplied text buffer.

This is mainly a diagnostics and support function. It is useful in a test harness, About box, setup screen, or support dialog when you want to confirm what the DLL believes about the current license.

Export name

Clarion prototype (Inside Global MAP)

Parameters

Parameter Type Description Expected values / range
OutText *CSTRING Receives the license status text. Pass a writable text buffer.
OutTextLen LONG Size of OutText in bytes. Normally SIZE(OutText).

Return value

What the text includes

The returned text can include items such as:

Example output:

Clarion example

OutText                  CSTRING(512)
Result                   SIGNED

CLEAR(OutText)
Result = vuMailKitGetLicenseInfo(OutText, SIZE(OutText))

Notes

All functions Legacy functions About function names