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

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void ViewProtectionStatus()

{

 if(CIntelliProtector::IsSoftwareProtected())

         AfxMessageBox(L"Software is protected.");

 else

         AfxMessageBox(L"Software is not protected.");

}

 

 

 

 





Copyright © 2015 IntelliProtector.com