EmSACAN_Version
Prototype
unsigned long EmSACAN_Version(
void );
Description
Returns the DLL version as a packed integer.
Parameters
| Parameter | Direction | Type | Description |
|---|---|---|---|
void | in | — | — |
Example
unsigned long ver = EmSACAN_Version();
int major = (int)((ver >> 24) & 0xFF);
int minor = (int)((ver >> 16) & 0xFF);
int revision = (int)(ver & 0xFFFF);