Contents
Virtualize markers
DotFix NiceProtect strating from version 2.5 supports virtualiize markers for morphing and virtualization. To use this features please look at SDK folder for includes and some examples. Generally, the function marking for protection has the next form:
Delphi:
{$I protect_start.inc}
your code;
{$I protect_end.inc}
C++:
#include "niceprotect.h"
protect_start;
your code;
protect_end;
VB:
Call VarPtr("$$protect_start$$")
your code
Call VarPtr("$$protect_end$$")
Markers usage samples are placed in the SDK\Examples direstory.
NiceProtect search and virtualize markers automatically just after you have pressed the Start button. You don't need to enable additional options to do this.
|