GetSupportExpirationProductVersionW |
Top Previous Next |
This function returns the product version when support will be expired. Unicode version.
static void GetSupportExpirationProductVersionW(OUT wchar_t* pwcsVersion, IN int iMaxLength);
Parameters
wchar_t* pwcsVersion - This is a buffer for the support expiration product version.
Return value
Returns nothing. The output parameter (pwcsVersion) will get the product version.
Requirements
Header: IntelliProtector.h
Example
using namespace IntelliProtectorService; // ...
void ShowSupportExpirationProductVersion() { const int ciBufferLen = 256; wchar_t wcsVersion[ciBufferLen] = {0, }; CIntelliProtector::GetSupportExpirationProductVersionW(wcsVersion, ciBufferLen); AfxMessageBox(wcsVersion); }
|
Copyright © 2015 IntelliProtector.com |