Compiler Directives
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi Quick question: Can one OR (||) compiler directives, such as: IFDEF ( xxxx || yyyy ) ENDIF Thanks Rui
Use '#if' and 'defined':
#if defined(XXX) || defined (YYY)
...
#endifTomasz Sowinski -- http://www.shooltz.com
*** Vodka. Connecting people. ***