Changeset 10435 for trunk/include
- Timestamp:
- Jan 30, 2004, 11:22:02 PM (22 years ago)
- Location:
- trunk/include
- Files:
-
- 5 edited
-
dbglog.h (modified) (2 diffs)
-
win/thread.h (modified) (2 diffs)
-
win/wine/obj_inplace.h (modified) (5 diffs)
-
win/wine/obj_propertystorage.h (modified) (4 diffs)
-
winuser32.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/dbglog.h
r9707 r10435 17 17 18 18 #ifdef DEBUG 19 #define DEBUG_LOGGING 1 19 20 #ifdef PRIVATE_LOGGING 20 21 //To use private dll logging, define PRIVATE_LOGGING and … … 31 32 #define dprintfNoEOL(a) WriteLogNoEOL a 32 33 #endif 33 #define eprintf(a) WriteLog a 34 #define eprintf(a) WriteLog a 34 35 #define dassert(a, b) if(!(a)) dprintf b 35 36 #define dbgCheckObj(a) a->checkObject() -
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 ICOM_CALL1(GetWindow,p,a)292 #define IOleInPlaceFrame_ContextSensitiveHelp ICOM_CALL1(ContextSensitiveHelp,p,a)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 ICOM_CALL1(GetBorder,p,a)295 #define IOleInPlaceFrame_RequestBorderSpace ICOM_CALL1(RequestBorderSpace,p,a)296 #define IOleInPlaceFrame_SetBorderSpace ICOM_CALL1(SetBorderSpace,p,a)297 #define IOleInPlaceFrame_SetActiveObject ICOM_CALL2(SetActiveObject,p,a,b)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 ICOM_CALL2(InsertMenus,p,a,b)300 #define IOleInPlaceFrame_SetMenu ICOM_CALL3(SetMenu,p,a,b,c)301 #define IOleInPlaceFrame_RemoveMenus ICOM_CALL1(RemoveMenus,p,a)302 #define IOleInPlaceFrame_SetStatusText ICOM_CALL1(SetStatusText,p,a)303 #define IOleInPlaceFrame_EnableModeless ICOM_CALL1(EnableModeless,p,a)304 #define IOleInPlaceFrame_TranslateAccelerator ICOM_CALL2(TranslateAccelerator,p,a,b)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; -
trunk/include/winuser32.h
r10136 r10435 50 50 void WIN32API SetWindowAppearance(int fOS2Looks); 51 51 52 BOOL WIN32API OSLibWinCreateObject(LPSTR pszPath, LPSTR pszArgs, LPSTR pszWorkDir, LPSTR pszName, 52 BOOL WIN32API OSLibWinCreateObject(LPSTR pszPath, LPSTR pszArgs, LPSTR pszWorkDir, LPSTR pszName, 53 53 LPSTR pszDescription, LPSTR pszIcoPath, INT iIcoNdx, BOOL fDesktop); 54 54 … … 77 77 //PostThreadMessage is done through Open32; which means the message id will be translated 78 78 //(0xc00 added) 79 #define OPEN32_MSGDIFF 0xC00 80 #define WIN32APP_POSTMSG (0x1000+OPEN32_MSGDIFF) 79 #define OPEN32_MSGDIFF 0xC00 80 #define WIN32APP_POSTMSG (0x1000+OPEN32_MSGDIFF) 81 #define WIN32APP_FORWARDEDPOSTMSG (0x1001+OPEN32_MSGDIFF) 82 #define WIN32APP_FORWARDEDPOSTMSG_MAGIC 0x12345677 81 83 82 84 //PM doesn't allow SetFocus during WM_SETFOCUS message processing; must delay
Note:
See TracChangeset
for help on using the changeset viewer.
