#ifdef WIN32 # define TARGET_OS \'W_NT\'
I am getting C++ warning in Linux multi-character character constant. at the below line. How to resolve this
String constants use double quotes, single quotes are for character constants.
To suppress the warning if this is what you mean you can use -Wno-multichar gcc option.
-Wno-multichar