Hello,
Visual Studio C++ 2008
I have the following code in my server.h file.
#if defined ( __linux__ )
void* get_info(void*);
#elif defined ( _WIN32)
void* WINAPI get_info(void*)
#endif
I keep getting the error:
mismatched #if/#endif pair in server.h file
The code looks ok to me, I can't understand why I am getting this error?
Am I missing something?
Many thanks for any advice,