C
static unsigned int HIDClassVersion();
Description
Reports back the DLL, Major, Minor and Dot release numbers of the bill.
Preconditions
None
Returns
unsigned int representing the version of the DLL. Formatted as three 8 bit unsigned integers, major release.minor release.dot release. For example: Version 1.23.45 would be encoded as 0x00011739
Example
Version = MCHPHIDCLASS::HIDClassVersion () Major = (Version & 0x00FF0000) >> 16; Minor = (Version & 0x0000FF00) >> 8; Dot = Version & 0x000000FF;