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 15 #define IDD_PROPPAGECOMPLETE 1100 16 #define IDC_DESTDIR 1101 17 #define IDC_SHOW_EXTRACTED 1102 18 19 #define IDD_CONFIRM_FILE_REPLACE 1200 20 #define IDYESALL 1202 21 #define IDC_EXCLAMATION_ICON 1205 22 #define IDC_MESSAGE 1206 23 24 #define IDD_PASSWORD 1300 25 #define IDSKIP 1301 26 27 28 /* Strings */ 29 #define IDS_COL_NAME 100 30 #define IDS_COL_TYPE 101 31 #define IDS_COL_COMPRSIZE 102 32 #define IDS_COL_PASSWORD 103 33 #define IDS_COL_SIZE 104 34 #define IDS_COL_RATIO 105 35 #define IDS_COL_DATE_MOD 106 36 #define IDS_YES 107 37 #define IDS_NO 108 38 #define IDS_ERRORTITLE 109 39 #define IDS_CANTSTARTTHREAD 110 40 #define IDS_NOFILES 111 41 #define IDS_CANTCREATEZIP 112 42 #define IDS_CANTREADFILE 113 43 44 /* Wizard titles */ 45 #define IDS_WIZ_TITLE 8000 46 #define IDS_WIZ_DEST_TITLE 8001 47 #define IDS_WIZ_DEST_SUBTITLE 8002 48 #define IDS_WIZ_COMPL_TITLE 8003 49 #define IDS_WIZ_COMPL_SUBTITLE 8004 50 51 #define IDS_WIZ_BROWSE_TITLE 8010 52 53 /* Questions */ 54 #define IDS_OVERWRITEFILE_TEXT 9000 55 #define IDS_PASSWORD_FILE_TEXT 9001 56 #define IDS_PASSWORD_ZIP_TEXT 9002 57 58 59 /* Context menu / ExplorerCommand strings */ 60 #define IDS_MENUITEM 10039 61 #define IDS_HELPTEXT 10041 62 #define IDS_FRIENDLYNAME 10195 63 64 65 #ifndef IDC_STATIC 66 #define IDC_STATIC -1 67 #endif 68