I have a C resource file called resources.rc, which contains the following line to specify the icon used for a project
    1000 ICON  "icon222.ico"
I would like to use this same resource file for several projects using a pre processor conditional depending on the project..
e.g
    #if __PROJECT__ == "myapp.exe"
    1000 ICON "icon222.ico"
    #endif
    #if __PROJECT__ == "myotherapp.exe"
    1000 ICON "icon777.ico"
    #endif
Is there a standard C macro or definition that could be used to achieve something like this ?