ITP_GET_PROTECTION_DATE_V3 |
Top Previous Next |
This function returns the protection date.
ITP_GET_PROTECTION_DATE_V3(int iYear, int iMonth, int iDay, int iHour, int iMinute);
Parameters
iYear - Year in date of protection iMonth - Month in date of protection iDay - Day in date of protection iHour - Hours in date of protection iMinute - Minutes in date of protection
Return
Returns nothing. Output parameters will get date of protection.
Requirements
Header: IntelliProtectorDeclarations.h
Example
void ShowProtectionDate() { int iYear, iMonth, iDay, iHour, iMinute; iYear = iMonth = iDay = iHour = iMinute = 0;
ITP_GET_PROTECTION_DATE_V3(iYear, iMonth, iDay, iHour, iMinute);
CString csDate; csDate.Format("%d.%d.%d %d:%d", iDay, iMonth, iYear, iHour, iMinute); AfxMessageBox(csDate); }
|
Copyright © 2015 IntelliProtector.com |