|
IsSoftwareProtected |
Top Previous Next |
|
This function returns protection status of software (protected or not protected). You can use this function during development process.
static bool IsSoftwareProtected();
Parameters
No parameters.
Return value
Returns true if software is protected. Returns false if software is not protected.
Requirements
Library: IntelliProtectorDummy.dll Source: UnitIntelliProtector.h
Example
#include "UnitIntelliProtector.h" using namespace IntelliProtectorService; //... void TFormMain::UpdateIntelliprotectorControls() { if(CIntelliProtector::IsSoftwareProtected()) lProtectionStatus->Caption = "yes"; else lProtectionStatus->Caption = "no"; }
|
| Copyright © 2011 intelliprotector.com |