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 39 40 /* Wizard titles */ 41 #define IDS_WIZ_TITLE 8000 42 #define IDS_WIZ_DEST_TITLE 8001 43 #define IDS_WIZ_DEST_SUBTITLE 8002 44 #define IDS_WIZ_COMPL_TITLE 8003 45 #define IDS_WIZ_COMPL_SUBTITLE 8004 46 47 #define IDS_WIZ_BROWSE_TITLE 8010 48 49 /* Questions */ 50 #define IDS_OVERWRITEFILE_TEXT 9000 51 #define IDS_PASSWORD_FILE_TEXT 9001 52 #define IDS_PASSWORD_ZIP_TEXT 9002 53 54 55 /* Context menu / ExplorerCommand strings */ 56 #define IDS_MENUITEM 10039 57 #define IDS_HELPTEXT 10041 58 #define IDS_FRIENDLYNAME 10195 59 60 61 #ifndef IDC_STATIC 62 #define IDC_STATIC -1 63 #endif 64