| AntiDebugLIB Function Reference | |
GJ_add |
X& GJ_add(X& dest,X& src)
X& GJ_add_demo(X& dest,X& src)
dest
first operation data
src
second operation data
Return The reference of dest.
dest=dest+src
int a=1;
int b=2;
#ifndef _ANTIDEBUG
a=a+b;
#else
a=GJ_add(a,b);
#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
|