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