1 #pragma once 2 3 /* Bitmaps */ 4 #define IDB_ZIPFLDR 164 5 #define IDB_HEADER 200 6 #define IDB_WATERMARK 201 7 8 /* registry stuff */ 9 #define IDR_ZIPFLDR 8000 10 11 12 /* Dialogs */ 13 14 #define IDD_PROPPAGEDESTINATION 1000 15 #define IDC_DIRECTORY 1001 16 #define IDC_BROWSE 1002 17 #define IDC_PASSWORD 1003 18 #define IDC_PROGRESS 1004 19 #define IDC_STATUSTEXT 1005 20 21 #define IDD_PROPPAGECOMPLETE 1100 22 #define IDC_DESTDIR 1101 23 #define IDC_SHOW_EXTRACTED 1102 24 25 #define IDD_CONFIRM_FILE_REPLACE 1200 26 #define IDYESALL 1202 27 #define IDC_EXCLAMATION_ICON 1205 28 #define IDC_MESSAGE 1206 29 30 #define IDD_PASSWORD 1300 31 #define IDSKIP 1301 32 33 34 /* Strings */ 35 #define IDS_COL_NAME 100 36 #define IDS_COL_TYPE 101 37 #define IDS_COL_COMPRSIZE 102 38 #define IDS_COL_PASSWORD 103 39 #define IDS_COL_SIZE 104 40 #define IDS_COL_RATIO 105 41 #define IDS_COL_DATE_MOD 106 42 #define IDS_YES 107 43 #define IDS_NO 108 44 #define IDS_ERRORTITLE 109 45 #define IDS_CANTSTARTTHREAD 110 46 #define IDS_NOFILES 111 47 #define IDS_CANTCREATEZIP 112 48 #define IDS_CANTREADFILE 113 49 #define IDS_EXTRACTING 114 50 51 /* Wizard titles */ 52 #define IDS_WIZ_TITLE 8000 53 #define IDS_WIZ_DEST_TITLE 8001 54 #define IDS_WIZ_DEST_SUBTITLE 8002 55 #define IDS_WIZ_COMPL_TITLE 8003 56 #define IDS_WIZ_COMPL_SUBTITLE 8004 57 58 #define IDS_WIZ_BROWSE_TITLE 8010 59 60 /* Questions */ 61 #define IDS_OVERWRITEFILE_TEXT 9000 62 #define IDS_PASSWORD_FILE_TEXT 9001 63 #define IDS_PASSWORD_ZIP_TEXT 9002 64 65 66 /* Context menu / ExplorerCommand strings */ 67 #define IDS_MENUITEM 10039 68 #define IDS_HELPTEXT 10041 69 #define IDS_FRIENDLYNAME 10195 70 71 72 #ifndef IDC_STATIC 73 #define IDC_STATIC -1 74 #endif 75