| AntiDebugLIB Function Reference | |
GJ_not |
X& GJ_not(X& dest)
dest
first operation data
Return dest.
dest=~dest
int a=1;
#ifndef _ANTIDEBUG
a=~a;
#else
a=GJ_not(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 except float,double,long double.
© Copyright 2009 AntiDebugLIB International Inc. All Rights Reserved
|