Using ValidateIntegrity?
QLM 6.2.13216.1
C++
I can not find documentation or examples for ValidateIntegrity. Is it done like this:
BOOL f = license->ValidateIntegrity( &bs.GetBSTR( ) );
if ( f == TRUE )
return valid;
else
return invalid;
Does ValidateIntegrity throw an exception?
0
-
Something like this...
CComBSTR bstrMsg;
VARIANT_BOOL b = license->ValidateIntegrity (&bstrMsg);if (b == VARIANT_TRUE)
{
// success
}
else
{
// failed
}0
Please sign in to leave a comment.
Comments
1 comment