GetSupportExpirationDaysLeftCount |
Top Previous Next |
Function returns days quantity, which are left for the support period. The license code will be valid for product versions which are released during this support period.
static int GetSupportExpirationDaysLeftCount();
Parameters
No parameters.
Return value
Returns count of days which are remain before the support period expires.
Requirements
Header: IntelliProtector.h
Example
using namespace IntelliProtectorService; // ...
void ShowSupportDaysLeft() { int iDaysLeftCount = CIntelliProtector::GetSupportExpirationDaysLeftCount(); CString csDaysLeft; csDaysLeft.Format(L"Support expiration days left: %d", iDaysLeftCount); AfxMessageBox(csDaysLeft); }
|
Copyright © 2015 IntelliProtector.com |