47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
#ifndef IDS_H__
|
|
#define IDS_H__
|
|
|
|
|
|
// Used by pack2.rc
|
|
//
|
|
|
|
#define IDI_DOCUMENT 1
|
|
|
|
// Dialogs
|
|
#define IDD_SELECTFILE 102
|
|
#define IDD_SELECTICON 103
|
|
#define IDD_SELECTLABEL 107
|
|
#define IDD_EDITEMBEDPACKAGE 108
|
|
#define IDD_EDITCMDPACKAGE 109
|
|
|
|
#define IDC_COMMAND 1003
|
|
#define IDC_BROWSE 1004
|
|
#define IDC_CHANGEICON 1005
|
|
#define IDC_PACKICON 1007
|
|
#define IDC_WIZBMP 1009
|
|
#define IDC_EDIT1 1013
|
|
#define IDC_EDIT2 1014
|
|
|
|
// Strings
|
|
#define IDS_BROWSEEXT 2001
|
|
#define IDS_BROWSEFILTER 2002
|
|
#define IDS_BROWSETITLE 2003
|
|
#define IDS_APP_TITLE 3000
|
|
#define IDS_UPDATE_ERROR 3001
|
|
#define IDS_OLD_FORMAT_ERROR 3002
|
|
#define IDS_CREATE_ERROR 3003
|
|
#define IDS_COPY_ERROR 3004
|
|
#define IDS_COPY_COMPLETE 3005
|
|
|
|
// Icons
|
|
#define IDI_PACKAGER 1500
|
|
|
|
// Bitmaps
|
|
#define IDB_PACKWIZBMP 5000
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
|
|
|
|
#endif
|