Changeset 1866 for trunk/include/win
- Timestamp:
- Nov 28, 1999, 1:34:29 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/authors.h
r1865 r1866 1 /* $Id: authors.h,v 1.4 1999-11-28 12:34:29 sandervl Exp $ */ 1 2 #ifndef __WINE_AUTHORS_H 2 3 #define __WINE_AUTHORS_H -
trunk/include/win/dlgs.h
r1546 r1866 1 /* $Id: dlgs.h,v 1. 2 1999-11-02 19:06:42sandervl Exp $ */1 /* $Id: dlgs.h,v 1.3 1999-11-28 12:33:11 sandervl Exp $ */ 2 2 /****************************************************************************** 3 3 * dlgs.h - Common dialog's dialog control ID numbers * … … 6 6 #ifndef __WINE_DLGS_H 7 7 #define __WINE_DLGS_H 8 9 #include "wine/obj_shellview.h" 8 10 9 11 #define ctlFirst 0x0400 … … 172 174 #define scr8 0x0497 173 175 176 /* 177 * Controls 178 */ 179 #define ctl1 0x04A0 180 174 181 /* These dialog resource ordinals really start at 0x0600, but the 175 182 * RC Compiler can't handle hex for resource IDs, hence the decimal. 176 183 */ 177 #define FILEOPENORD 1536 178 #define MULTIFILEOPENORD 1537 179 #define PRINTDLGORD 1538 180 #define PRNSETUPDLGORD 1539 181 #define FINDDLGORD 1540 182 #define REPLACEDLGORD 1541 183 #define FONTDLGORD 1542 184 #define FORMATDLGORD31 1543 185 #define FORMATDLGORD30 1544 186 187 188 #define IDD_OPENDIALOG 101 189 #define IDD_SAVEDIALOG 201 190 #define IDS_ABOUTBOX 101 191 #define IDS_DOCUMENTFOLDERS 102 192 #define IDS_PERSONAL 103 193 #define IDS_FAVORITES 104 194 #define IDS_PATH 105 195 #define IDS_DESKTOP 106 196 #define IDB_TOOLBAR 107 197 #define IDS_FONTS 108 198 #define IDS_MYCOMPUTER 110 199 #define IDS_SYSTEMFOLDERS 112 200 #define IDS_LOCALHARDRIVES 113 201 #define IDS_FILENOTFOUND 114 202 #define IDS_VERIFYFILE 115 203 #define IDS_CREATEFILE 116 204 #define IDC_OPENREADONLY 410 205 #define IDC_FILETYPESTATIC 441 206 #define IDC_FILENAMESTATIC 442 207 #define IDC_LOOKINSTATIC 443 208 #define IDC_SHELLSTATIC 461 209 #define IDC_FILETYPE 470 210 #define IDC_LOOKIN 471 211 #define IDC_FILENAME 480 212 #define IDC_UPFOLDER 1009 213 #define IDC_NEWFOLDER 1010 214 #define IDC_LIST 1011 215 #define IDC_DETAILS 1014 184 #define FILEOPENORD 1536 185 #define MULTIFILEOPENORD 1537 186 #define PRINTDLGORD 1538 187 #define PRNSETUPDLGORD 1539 188 #define FINDDLGORD 1540 189 #define REPLACEDLGORD 1541 190 #define FONTDLGORD 1542 191 #define FORMATDLGORD31 1543 192 #define FORMATDLGORD30 1544 193 #define PAGESETUPDLGORD 1546 194 #define NEWFILEOPENORD 1547 195 #define PRINTDLGEXORD 1549 196 #define PAGESETUPDLGORDMOTIF 1550 197 #define COLORMGMTDLGORD 1551 198 #define NEWFILEOPENV2ORD 1552 216 199 217 200 #endif /* #ifdef __WINE_DLGS_H */ -
trunk/include/win/wine/obj_shellview.h
r641 r1866 1 /* $Id: obj_shellview.h,v 1. 5 1999-08-22 22:52:10sandervl Exp $ */1 /* $Id: obj_shellview.h,v 1.6 1999-11-28 12:33:11 sandervl Exp $ */ 2 2 /************************************************************ 3 3 * IShellView … … 74 74 #define FCIDM_BROWSERFIRST 0xA000 75 75 /* undocumented toolbar items from stddlg's*/ 76 #define FCIDM_TB_UPFOLDER 0xA001 77 #define FCIDM_TB_NEWFOLDER 0xA002 76 78 #define FCIDM_TB_SMALLICON 0xA003 77 79 #define FCIDM_TB_REPORTVIEW 0xA004 … … 126 128 #undef ICOM_INTERFACE 127 129 128 #ifdef ICOM_CINTERFACE 130 /*** IUnknown methods ***/ 129 131 #define IShellView_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b) 130 132 #define IShellView_AddRef(p) ICOM_CALL(AddRef,p) 131 133 #define IShellView_Release(p) ICOM_CALL(Release,p) 134 /*** IShellView methods ***/ 132 135 #define IShellView_GetWindow(p,a) ICOM_CALL1(GetWindow,p,a) 133 136 #define IShellView_ContextSensitiveHelp(p,a) ICOM_CALL1(ContextSensitiveHelp,p,a) … … 143 146 #define IShellView_SelectItem(p,a,b) ICOM_CALL2(SelectItem,p,a,b) 144 147 #define IShellView_GetItemObject(p,a,b,c) ICOM_CALL3(GetItemObject,p,a,b,c) 145 #endif146 148 147 149 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.