Hi to be honest im a C++ programmer but I needed to do this bit in C and it confused me. I created a resource file for my project with integer_ids. Which need to be defined in a seperate header file.
So I create the header file full of define statements like these
Code:
#define ID_ICON1	100
#define ID_ICON2	101
#define ID_Cursor1	102
#define ID_Cursor2	103
Then when it comes to compile it the resource compiler jsut states that there is an unexpected End of File in the header file and fails.