| AntiDebug LIB Function Reference | |
GJ_dec |
X& GJ_dec(X& dest)
dest
first operation data
Return The reference of dest.
dest=dest - -
int a=1;
#ifndef _ANTIDEBUG
a - -;
#else
GJ_dec(a);
#endif
Data type X may be char,unsigned char,signed char,int,unsigned int,short int,unsigned short int,long int,unsigned long int besides float,double,long double.