| AntiDebug LIB Function Reference | |
GJ_not_equal_to |
bool GJ_not_equal_to(X& dest,X& src)
dest
first operation data
src
second operation data
Return dest!=src.
int a=1;
int b=2;
#ifndef _ANTIDEBUG
if(a!=b)
AfxMessageBox("ok");
#else
if(GJ_not_equal_to(a,b)) AfxMessageBox("ok");
#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.