Why does MSVC++ give my an error if I try to compile a header into an include without a newline? (C++/Windows)
I'm using MSVC++ to program a simple window, and I included a resource file for a menu along the lines of: MYMENU MENU DISCARDABLE //etc. and I created a header file "resourcedef.h" with definitions like #define ID_MYMENU_FILE_CLOSE 1002 I can include it in my main.cpp file without error, however, when I include it in the resource ...