1234567891011121314
/* Icons */ #define IDI_LOGO 16 //0x10 - no problem here ... /* Bitmaps */ #define IDB_LOGO 200 #define IDB_GOOD 201 #define IDB_EVIL 202 /* Icons */ #define IDI_TERRAIN 90 #define IDI_ELEV 91 #define IDI_DRAWREPLACE 92 #define IDI_DRAWFILL 93 #define IDI_DRAWBRUSH 94
123456789101112
#include "resource.h" /* Bitmaps */ // no problem #define IDB_LOGO 200 #define IDB_GOOD 201 #define IDB_EVIL 202 /* Icons */ // problem: #define IDI_TERRAIN 90 #define IDI_ELEV 91 #define IDI_DRAWREPLACE 92 #define IDI_DRAWFILL 93 #define IDI_DRAWBRUSH 94
12
#include "resource.h" IDI_LOGO ICON DISCARDABLE "res/swgbts.ico"
#include "resource.h" IDI_LOGO ICON DISCARDABLE "res/aokts.ico"