Complier Error: RC1004
Complier Error: RC1004
Full Error Name:
Resource Compiler Fatal Error RC1004
unexpected end of file found
To Fix:
Be sure to hit enter at the end of the last line in both the resource.h and the resource.rc files.
Example:
//resource.h #define IDC_APPMENUS 100 #define IDM_EXIT 101 //a newline must be here //resource.rc #include resource.h IDC_APPMENUS MENU BEGIN POPUP "&File" BEGIN MENUITEM "E&xit", IDM_EXIT END END //a newline must also be here