I have imported a project from windows to linux in code::blocks using the import function
Now I have a problem with the following code
#ifdef WIN32
# ifdef A_EXPORTS
# define A_SPEC __declspec(dllexport)
# else
# define A_SPEC __declspec(dllimport)
# endif
#else
# define A_SPEC
#endif
Even on linux the variable WIN32 seems to be set somewhere in the code::blocks project, but I can't find it. Any idea where to find these C/C++ preprocessor variables
Thanks, Mike