Changeset 10435 for trunk/include/win
- Timestamp:
- Jan 30, 2004, 11:22:02 PM (22 years ago)
- Location:
- trunk/include/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/thread.h
r10318 r10435 150 150 BOOL fIgnoreMsgs; // set to true if waiting in WaitForSingleObject 151 151 BOOL fWaitMessage; // set if blocked in WaitMessage 152 BOOL fWaitMessageSuspend; 152 BOOL fWaitMessageSuspend; 153 153 154 154 CONTEXT context; // thread context … … 164 164 void * pWM_COPYDATA; 165 165 //@} 166 167 /** Thread Id of the thread is attached to this threads input queue. 168 * If 0 then no thread is attached. See AttachThreadInput() for details. */ 169 unsigned tidAttachedInputThread; 166 170 167 171 #ifdef DEBUG -
trunk/include/win/wine/obj_inplace.h
r641 r10435 1 /* $Id: obj_inplace.h,v 1. 5 1999-08-22 22:52:08 sandervlExp $ */1 /* $Id: obj_inplace.h,v 1.6 2004-01-30 22:22:01 bird Exp $ */ 2 2 /* 3 3 * Defines the COM interfaces and APIs related to structured data storage. 4 * 4 * 5 5 * Depends on 'obj_base.h'. 6 6 */ … … 107 107 OLECONTF_ONLYIFRUNNING = 16 108 108 } OLECONTF; 109 109 110 110 typedef HGLOBAL HOLEMENU; 111 111 typedef LPRECT LPBORDERWIDTHS; … … 264 264 #define IOleInPlaceUIWindow_SetActiveObject(p,a,b) ICOM_CALL2(SetActiveObject,p,a,b) 265 265 #endif 266 266 267 267 268 268 /***************************************************************************** … … 289 289 #define IOleInPlaceFrame_Release(p) ICOM_CALL (Release,p) 290 290 /*** IOleWindow methods ***/ 291 #define IOleInPlaceFrame_GetWindow 292 #define IOleInPlaceFrame_ContextSensitiveHelp 291 #define IOleInPlaceFrame_GetWindow(p,a) ICOM_CALL1(GetWindow,p,a) 292 #define IOleInPlaceFrame_ContextSensitiveHelp(p,a) ICOM_CALL1(ContextSensitiveHelp,p,a) 293 293 /*** IOleInPlaceUIWindow methods ***/ 294 #define IOleInPlaceFrame_GetBorder 295 #define IOleInPlaceFrame_RequestBorderSpace 296 #define IOleInPlaceFrame_SetBorderSpace 297 #define IOleInPlaceFrame_SetActiveObject 294 #define IOleInPlaceFrame_GetBorder(p,a) ICOM_CALL1(GetBorder,p,a) 295 #define IOleInPlaceFrame_RequestBorderSpace(p,a) ICOM_CALL1(RequestBorderSpace,p,a) 296 #define IOleInPlaceFrame_SetBorderSpace(p,a) ICOM_CALL1(SetBorderSpace,p,a) 297 #define IOleInPlaceFrame_SetActiveObject(p,a,b) ICOM_CALL2(SetActiveObject,p,a,b) 298 298 /*** IOleInPlaceFrame methods ***/ 299 #define IOleInPlaceFrame_InsertMenus 300 #define IOleInPlaceFrame_SetMenu 301 #define IOleInPlaceFrame_RemoveMenus 302 #define IOleInPlaceFrame_SetStatusText 303 #define IOleInPlaceFrame_EnableModeless 304 #define IOleInPlaceFrame_TranslateAccelerator 305 #endif 306 299 #define IOleInPlaceFrame_InsertMenus(p,a,b) ICOM_CALL2(InsertMenus,p,a,b) 300 #define IOleInPlaceFrame_SetMenu(p,a,b,c) ICOM_CALL3(SetMenu,p,a,b,c) 301 #define IOleInPlaceFrame_RemoveMenus(p,a) ICOM_CALL1(RemoveMenus,p,a) 302 #define IOleInPlaceFrame_SetStatusText(p,a) ICOM_CALL1(SetStatusText,p,a) 303 #define IOleInPlaceFrame_EnableModeless(p,a) ICOM_CALL1(EnableModeless,p,a) 304 #define IOleInPlaceFrame_TranslateAccelerator(p,a,b) ICOM_CALL2(TranslateAccelerator,p,a,b) 305 #endif 306 307 307 308 308 /***************************************************************************** … … 401 401 #define IParseDisplayName_ParseDisplayName(p,a,b,c,d) ICOM_CALL4(ParseDisplayName,p,a,b,c,d) 402 402 #endif 403 403 404 404 405 405 /***************************************************************************** -
trunk/include/win/wine/obj_propertystorage.h
r641 r10435 1 /* $Id: obj_propertystorage.h,v 1. 5 1999-08-22 22:52:10 sandervlExp $ */1 /* $Id: obj_propertystorage.h,v 1.6 2004-01-30 22:22:02 bird Exp $ */ 2 2 /* 3 3 * Defines the COM interfaces and APIs related to saving properties to file. … … 91 91 { 92 92 ULONG ulKind; 93 union 93 union 94 94 { 95 95 PROPID propid; … … 170 170 #define IEnumSTATPROPSTG_IMETHODS \ 171 171 IUnknown_IMETHODS \ 172 IEnumSTATPROPSTG_METHODS 172 IEnumSTATPROPSTG_METHODS 173 173 ICOM_DEFINE(IEnumSTATPROPSTG,IUnknown) 174 174 #undef ICOM_INTERFACE … … 351 351 WORD wReserved2; 352 352 WORD wReserved3; 353 union 353 union 354 354 { 355 /* Empty union arm */ 355 /* Empty union arm */ 356 char cVal; 356 357 UCHAR bVal; 357 358 short iVal;
Note:
See TracChangeset
for help on using the changeset viewer.