<< Click to Display Table of Contents >> Navigation: Themida > SecureEngine® Macros > Unprotected macro |
The UNPROTECTED macro allows you to mark regions of code that will be ONLY executed when your application is not yet protected. Once your application is protected, the code inside the macro will not be executed, basically the code inside the macro markers is destroyed and jumped to avoid execution. This macro is only necessary to avoid releasing unprotected applications by mistake.
NOTE:The current version of SecureEgine® does not support this function to be called for .NET languages or Visual Basic applications.
{$I Unprotected_Start.inc}
// your code goes here
{$I Unprotected_End.inc} |
UNPROTECTED_START
// your code goes here
UNPROTECTED_END |