MCHPHIDClass::HIDClassVersion Method

HID Class DLL

HID Class DLL
MCHPHIDClass::HIDClassVersion Method
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;
Microchip HID Class DLL 1.10 - [15 April 2010]
Copyright © 2009, 2010 Microchip Technology, Inc.  All rights reserved.