<< Click to Display Table of Contents >> Navigation: NmxDLL Reference Guide > API (programming interface) > Miscellaneous > NMX_GetDllVersion_1 |
This function returns the current version of the NMX DLL.
Definition
void NMX_GetDllVersion_1(
unsigned short* pusMajor,
unsigned short* pusMinor,
unsigned short* pusPatch,
unsigned short* pusBuild);
Parameter
pusMajor
Major version of the NMX DLL.
pusMinor
Minor version of the NMX DLL.
pusPatch
Patch version of the NMX DLL.
pusBuild
Build number of the NMX DLL.
Typical function call (C example)
NMX_GetDllVersion_1(&usMajor, &usMinor, &usPatch, &usBuild);
.Net DLL specific implementation
System::Void GetDllVersion_1(System::UInt16 %pusMajor, System::UInt16 %pusMinor, System::UInt16 %pusPatch, System::UInt16 %pusBuild);
Comments
See chapter "Versions" for more information.