<< Click to Display Table of Contents >> Navigation: WinLicense > SecureEngine® Macros > Unregistered macro |
The UNREGISTERED macro allows you to mark regions of code that will be executed when your application is running in trial mode. If your application is registered, these regions of code will be kept encrypted. When your application is running in trial mode and one of these regions of code is going to be executed, SecureEngine® will decrypt that region of code.
NOTE:The current version of SecureEgine® does not support this function to be called for .NET languages or Visual Basic compiled in PCode mode.
{$I Unregistered_Start.inc}
// your code goes here
{$I Unregistered_End.inc} |
UNREGISTERED_START
// your code goes here
UNREGISTERED_END |
Call VarPtr("UNREGISTERED_START")
' your code goes here
Call VarPtr("UNREGISTERED_END") |