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_TOOLTIP_PAUSE    108
26 #define IDS_ALL_TYPES_FILTER 109
27 #define IDS_PLAY             110
28 #define IDS_DEFAULTMCIERRMSG 111
29 
30 #define IDS_MODE_UNKNOWN     120
31 #define IDS_MODE_OPEN        121
32 #define IDS_MODE_STOP        122
33 #define IDS_MODE_PLAY        123
34 #define IDS_MODE_PAUSE       124
35 #define IDS_MODE_RECORD      125
36 #define IDS_MODE_SEEK        126
37 #define IDS_MODE_NOT_READY   127
38 
39 /* Menu */
40 #define IDR_MAINMENU    500
41 
42 /* Accelerators */
43 #define ID_ACCELERATORS 800
44 
45 /* Menu items */
46 #define IDM_OPEN_FILE  1000
47 #define IDM_CLOSE_FILE 1001
48 #define IDM_EXIT       1002
49 #define IDM_ABOUT      1003
50 #define IDM_VOLUMECTL  1004
51 #define IDM_DEVPROPS   1005
52 #define IDM_REPEAT     1006
53 #define IDM_SWITCHVIEW 1007
54 
55 /* The device specific items in the device menu start here */
56 #define IDM_DEVICE_FIRST 10000
57 
58 /* ToolBar Icons */
59 #define TBICON_PLAY     0
60 #define TBICON_STOP     1
61 #define TBICON_EJECT    2
62 #define TBICON_BACKWARD 3
63 #define TBICON_SEEKBACK 4
64 #define TBICON_SEEKFORW 5
65 #define TBICON_FORWARD  6
66 
67 /* ToolBar Buttons */
68 #define IDC_PLAY     1500
69 #define IDC_STOP     1501
70 #define IDC_EJECT    1502
71 #define IDC_BACKWARD 1503
72 #define IDC_SEEKBACK 1504
73 #define IDC_SEEKFORW 1505
74 #define IDC_FORWARD  1506
75 #define IDC_PAUSE    1507
76