GetSupportExpirationProductVersionA

Top  Previous  Next

This function returns the product version when support will be expired.

 

static void GetSupportExpirationProductVersionA(OUT char* pchPVersion, IN int iMaxLength);

 

Parameters

 

 char* pchPVersion - This is a buffer for the support expiration product version.
 int iMaxLength   - Length of the buffer.

 

Return value

 

 Returns nothing. The output parameter (pchPVersion) will get the product version.

 

Requirements

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void ShowSupportExpirationProductVersion()

{

 const int ciBufferLen = 256;

 char chBuffer[ciBufferLen] = {0, };

 CIntelliProtector::GetSupportExpirationProductVersionA(chBuffer, ciBufferLen);

 AfxMessageBox(chBuffer);        

}

 

 

 





Copyright © 2015 IntelliProtector.com