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