Retrieves the name of the current process's module.
Public Declare Function API_ModuleName Lib "diCryptoSys.dll"
(ByVal strModuleName As String, ByVal nMaxChars As Long, ByVal nOptions As Long) As Long
nRet = API_ModuleName(strName, nStrLen, 0)
String to receive the name of the module.Long specifying the maximum number of characters to be received.Long option flags: not used in this release. Specify zero.
long _stdcall API_ModuleName(char *szOutput, long nLen, long reserved);
Long: If successful, the return value is the number of characters in the output string;
otherwise it returns a negative error code.
gen.ModuleName
Public Function ModuleName() As String
See gen.ModuleName.