Hi,
Would you like to provide an API function to get the dongle status in the future?
My company’s software named PC-DIMS authorizes with a dongle also. We provide the following interface to get the dongle status about every module.
Example as follows:
// call IsFeatureEnabled to get the dongle status about Gear module.
CHASPClient hc;
int nDummy=0;
if(!hc.IsFeatureEnabled(MOD_GEAR, nDummy))
{
AfxMessageBox(IDS_PORTLOCK_NOT_PROGRAMED);
return FALSE;
}
yogy