GetIntelliProtectorVersionW

Top  Previous  Next

This function obtains version of the protection core. Unicode version.

 

static void GetIntelliProtectorVersionW(OUT wchar_t* pwcsVersion, IN int iMaxLength);

 

Parameters

 

 wchar_tpwcsVersion - 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;

 wchar_t wcsVersion[ciBufferLen] = {0, };

 CIntelliProtector::GetIntelliProtectorVersionW(wcsVersion, ciBufferLen);

 AfxMessageBox(wcsVersion);        

}

 

 

 





Copyright © 2015 IntelliProtector.com