mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
69 lines
1.5 KiB
C
69 lines
1.5 KiB
C
#pragma once
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
#define IDI_MAIN_ICON 50
|
|
#define IDB_ROOT_IMAGE 51
|
|
|
|
/* windows */
|
|
#define IDC_TREEVIEW 1000
|
|
#define IDC_TOOLBAR 1001
|
|
#define IDC_STATUSBAR 1002
|
|
|
|
/* commands */
|
|
#define IDC_PROP 2000
|
|
#define IDC_REFRESH 2001
|
|
#define IDC_PRINT 2002
|
|
#define IDC_PROGHELP 2003
|
|
#define IDC_EXIT 2004
|
|
#define IDC_ABOUT 4031
|
|
|
|
/* menus */
|
|
#define IDR_MAINMENU 102
|
|
#define IDR_POPUP 103
|
|
#define IDC_DEVBYTYPE 104
|
|
#define IDC_DEVBYCONN 105
|
|
#define IDC_RESBYTYPE 106
|
|
#define IDC_RESBYCONN 107
|
|
#define IDC_SHOWHIDDEN 108
|
|
|
|
/* tooltips */
|
|
#define IDS_TOOLTIP_PROP 6000
|
|
#define IDS_TOOLTIP_REFRESH 6001
|
|
#define IDS_TOOLTIP_HELP 6002
|
|
#define IDS_TOOLTIP_EXIT 6003
|
|
|
|
/* button bitmaps */
|
|
#define IDB_PROP 10000
|
|
#define IDB_REFRESH 10001
|
|
#define IDB_HELP 10002
|
|
#define IDB_EXIT 10003
|
|
|
|
/* toolbar buttons */
|
|
#define TBICON_PROP 0
|
|
#define TBICON_REFRESH 1
|
|
#define TBICON_HELP 2
|
|
#define TBICON_EXIT 3
|
|
|
|
/* about box info */
|
|
#define IDD_ABOUTBOX 200
|
|
#define IDC_LICENSE_EDIT 201
|
|
#define IDS_APPNAME 202
|
|
#define IDS_LICENSE 203
|
|
|
|
|
|
/* menu hints */
|
|
#define IDS_HINT_BLANK 20000
|
|
#define IDS_HINT_REFRESH 20002
|
|
#define IDS_HINT_PROP 20003
|
|
#define IDS_HINT_HELP 20004
|
|
#define IDS_HINT_ABOUT 20005
|
|
#define IDS_HINT_EXIT 20006
|
|
|
|
/* system menu hints */
|
|
#define IDS_HINT_SYS_RESTORE 21001
|
|
#define IDS_HINT_SYS_MOVE 21002
|
|
#define IDS_HINT_SYS_SIZE 21003
|
|
#define IDS_HINT_SYS_MINIMIZE 21004
|
|
#define IDS_HINT_SYS_MAXIMIZE 21005
|
|
#define IDS_HINT_SYS_CLOSE 21006
|