reactos/base/applications/mplay32/resource.h
Cameron Gutman 29fa274d6d - Create another branch for networking fixes
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers)
 - If someone wants to delete aicom-network-fixes, they are welcome to
 - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea

svn path=/branches/aicom-network-branch/; revision=44353
2009-12-02 03:23:19 +00:00

55 lines
1.2 KiB
C

#ifndef __RESOURCE_H_
#define __RESOURCE_H_
/* Icons */
#define IDI_MAIN 10
/* Bitmaps */
#define IDB_PLAYICON 50
#define IDB_STOPICON 51
#define IDB_EJECTICON 52
#define IDB_BACKWARDICON 53
#define IDB_SEEKBACKICON 54
#define IDB_SEEKFORWICON 55
#define IDB_FORWARDICON 56
#define IDB_PAUSEICON 57
/* Strings */
#define IDS_APPTITLE 100
#define IDS_TOOLTIP_PLAY 101
#define IDS_TOOLTIP_STOP 102
#define IDS_TOOLTIP_EJECT 103
#define IDS_TOOLTIP_BACKWARD 104
#define IDS_TOOLTIP_SEEKBACK 105
#define IDS_TOOLTIP_SEEKFORW 106
#define IDS_TOOLTIP_FORWARD 107
#define IDS_ALL_TYPES_FILTER 108
/* Menu */
#define IDR_MAINMENU 500
/* Menu items */
#define IDM_OPEN_FILE 1000
#define IDM_CLOSE_FILE 1001
#define IDM_EXIT 1002
#define IDM_ABOUT 1003
/* ToolBar Icons */
#define TBICON_PLAY 0
#define TBICON_STOP 1
#define TBICON_EJECT 2
#define TBICON_BACKWARD 3
#define TBICON_SEEKBACK 4
#define TBICON_SEEKFORW 5
#define TBICON_FORWARD 6
/* ToolBar Buttons */
#define IDC_PLAY 1500
#define IDC_STOP 1501
#define IDC_EJECT 1502
#define IDC_BACKWARD 1503
#define IDC_SEEKBACK 1504
#define IDC_SEEKFORW 1505
#define IDC_FORWARD 1506
#endif /* __RESOURCE_H_ */