Hi all, I'm APE-porting some programs densely peppered wioth #-directives. Is there a way to preprocess the code, say:
#define CLIENTSERVER 0 #if CLIENTSERVER blah blah blah... #else //some useful code here #endif /*CLIENTSERVER*/ to get: //some useful code here ?? I mean, just to extract the relevant portions of code under #defined conditions. Thanks, ++pac.