GetIntelliProtectorVersionA

Top  Previous  Next

This function obtains version of the protection core.

 

static void GetIntelliProtectorVersionA(OUT char* pchVersion, IN int iMaxLength);

 

Parameters

 

 char* pchVersion - Buffer for the version of the protection core.
 int iMaxLength   - Length of the buffer.

 

Return value

 

 Returns nothing.

 

Requirements

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void ShowIntelliProtectorVersion()

{

 const int ciBufferLen = 256;

 char chBuffer[ciBufferLen] = {0, };

 CIntelliProtector::GetIntelliProtectorVersionA(chBuffer, ciBufferLen);

 AfxMessageBox(chBuffer);        

}

 

 

 





Copyright © 2015 IntelliProtector.com