I have a problems with #define is give me a loot of error warning 213: tag mismatch
Is there something wrong in my code?
PHP Code:
#define BitFlag_GiveIt(%0,%1) ( ( %0 ) |= ( %1 ) )
#define BitFlag_TakeIt(%0,%1) ( ( %0 ) &= ~( %1 ) )
#define INI_Zek(%1,%2,%3) \
if(!strcmp((%1),name,true))return boolstr(value) ? BitFlag_GiveIt(%2, %3) : BitFlag_TakeIt(%2, %3)
Please help me to find a better solution or anything else.
__________________