1 #pragma once 2 3 /* Icons */ 4 #define IDI_MAIN 10 5 6 /* Bitmaps */ 7 #define IDB_PLAYICON 50 8 #define IDB_STOPICON 51 9 #define IDB_EJECTICON 52 10 #define IDB_BACKWARDICON 53 11 #define IDB_SEEKBACKICON 54 12 #define IDB_SEEKFORWICON 55 13 #define IDB_FORWARDICON 56 14 #define IDB_PAUSEICON 57 15 16 /* Strings */ 17 #define IDS_APPTITLE 100 18 #define IDS_TOOLTIP_PLAY 101 19 #define IDS_TOOLTIP_STOP 102 20 #define IDS_TOOLTIP_EJECT 103 21 #define IDS_TOOLTIP_BACKWARD 104 22 #define IDS_TOOLTIP_SEEKBACK 105 23 #define IDS_TOOLTIP_SEEKFORW 106 24 #define IDS_TOOLTIP_FORWARD 107 25 #define IDS_ALL_TYPES_FILTER 108 26 #define IDS_PLAY 109 27 28 /* Menu */ 29 #define IDR_MAINMENU 500 30 31 /* Menu items */ 32 #define IDM_OPEN_FILE 1000 33 #define IDM_CLOSE_FILE 1001 34 #define IDM_EXIT 1002 35 #define IDM_ABOUT 1003 36 37 /* ToolBar Icons */ 38 #define TBICON_PLAY 0 39 #define TBICON_STOP 1 40 #define TBICON_EJECT 2 41 #define TBICON_BACKWARD 3 42 #define TBICON_SEEKBACK 4 43 #define TBICON_SEEKFORW 5 44 #define TBICON_FORWARD 6 45 46 /* ToolBar Buttons */ 47 #define IDC_PLAY 1500 48 #define IDC_STOP 1501 49 #define IDC_EJECT 1502 50 #define IDC_BACKWARD 1503 51 #define IDC_SEEKBACK 1504 52 #define IDC_SEEKFORW 1505 53 #define IDC_FORWARD 1506 54