CryptoSys API
6.22.1
|
General info about the core library DLL. More...
Static Public Member Functions | |
static std::string | CompileTime () |
Get date and time the core native DLL module was last compiled. More... | |
static std::string | LicenceType () |
Get licence type as a string. More... | |
static std::string | ModuleInfo () |
Get additional information about the core DLL module. More... | |
static std::string | ModuleName () |
Get full path name of the current process's core native DLL. More... | |
static std::string | Platform () |
Get platform the core native DLL was compiled for. More... | |
static int | Version () |
Get version number of the core native DLL as an integer value. More... | |
General info about the core library DLL.
|
static |
Get date and time the core native DLL module was last compiled.
|
static |
Get licence type as a string.
"D"
= Developer "T"
= Trial.
|
static |
Get additional information about the core DLL module.
Licensed Developer Edition
.
|
static |
Get full path name of the current process's core native DLL.
C:\Windows\System32
when it is really C:\Windows\SysWOW64
. See also Gen::Platform.
|
static |
Get platform the core native DLL was compiled for.
Win32
or X64
.
|
static |
Get version number of the core native DLL as an integer value.
Major*100*100 + Minor*100 + Release
. For example, version 2.10.3 would return the integer 21003
.