Gets the platform the core DLL was compiled for.
Public Declare Function PKI_Platform Lib "diCrPKI.dll"
(ByVal strOutput As String, ByVal nOutChars As Long) As Long
nRet = PKI_Platform(strOutput, nOutChars)
long __stdcall PKI_Platform(char *szOutput, long nOutChars);
If successful, the return value is the number of characters in or required for the output string; otherwise it returns a negative error code.
Public Function pkiPlatform
() As String
static std::string dipki::Gen::Platform ()
static Gen.core_platform()
For the "raw" VBA/C function, the user must allocate an output string buffer szOutput of the required length. Specify a zero nOutChars or an empty string for szOutput to find the required length. ANSI C users must add one to this value when allocating memory.
Debug.Print pkiCompileTime()
Debug.Print pkiModuleInfo()
Debug.Print pkiModuleName()
Debug.Print pkiPlatform()