I am compiling a resource compiler file UIPE.rc and got the error:
error RC2104: undefined keyword or key name: ID_SOME_MENUITEM_NAME
UIPE.rc has a header file resource.h included. The file resource.h contains a bunch of MACRO definitions, e.g, #define IDD_ABOUTBOX 6202.
I googled the error message and realized ID_SOME_MENUITEM_NAME should be defined in resource.h. But the file resource.h seems an auto-generated file and I do not want to manually edit it.
Can anybody tell me how the file resource.h is generated how I can add the definition of ID_SOME_MENUITEM_NAME to the file?