Returns the ASCII value of the licence type.
Public Declare Function API_LicenceType Lib "diCryptoSys.dll"
(ByVal nOptions As Long) As Long
nRet = API_LicenceType(nOptions)
long __stdcall API_LicenceType(long nOptions);
Returns the ASCII value of the licence type, either "D" (ASCII 68, 0x44) for the Developer Edition or "T" (ASCII 84, 0x54) for the Trial Edition.
gen.LicenceType
Public Function LicenceType() As String
See gen.LicenceType
.
static std::string crsysapi::Gen::LicenceType ()
static Gen.licence_type()
Note the Australian/British spelling of `Licence'.
Dim nRet As Long
nRet = API_LicenceType(0)
Debug.Print "API_LicenceType is " & Chr(nRet)