Retrieves the release version number.
Public Declare Function API_Version Lib "diCryptoSys.dll"
() As Long
nRet = API_Version()
None.
long _stdcall API_Version(void);
Long: the value of (100 x Major Version) + (10 x Minor Version) + (Revision).
E.g. major version 3, minor version 2, revision zero will return 320.
gen.Version
Public Function Version() As Long
See gen.Version.
Dim nRet As Long nRet = API_Version() Debug.Print "API_Version returns " & nRet
API_LicenceType
API_CompileTime
[Back to Top]