| Home | All functions | Legacy functions | Categories |
vuGetCodePage(),CSTRING,PROC,PASCAL,RAW,NAME('vuGetCodePage')
This legacy function is declared as returning CSTRING in Clarion to preserve original vuMail template behavior. Under the hood, the export returns a pointer to a null-terminated C string buffer, and Clarion consumes it directly as text, as shown in the examples below.
This is the legacy vuMail function name. It behaves the same as vuGlobalsGetCodePage().
MESSAGE() and string assignment.MESSAGE('The current vuMail Code Page is: ' & vuGetCodePage())
DWORD that was actually the address of an internal C string buffer. Clarion can consume that value directly in string expressions, which is why the legacy examples use assignment and MESSAGE() style calls because the Clarion prototype is declared as CSTRING.*CSTRING output buffers.| Home | All functions | Legacy functions | Categories |