- Timestamp:
- Aug 23, 1999, 12:09:56 AM (26 years ago)
- Location:
- trunk/src/ole32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/guid.cpp
r291 r633 1 /*2 *3 * Project Odin Software License can be found in LICENSE.TXT4 *5 */6 1 /* 7 2 * Concrete defintions of all IID's … … 11 6 * Copyright 1999 David J. Raison 12 7 * 8 * 9 * Project Odin Software License can be found in LICENSE.TXT 10 * 13 11 */ 14 12 15 13 // This causes all the DEFINE_GUID macros to instantiate their GUID's 16 #define INITGUID 114 #define INITGUID 17 15 18 16 #include "ole32.h" -
trunk/src/ole32/moniker.cpp
r291 r633 146 146 * ppvObject = 0; 147 147 148 if (IsEqualIID( IID_IUnknown,riid))148 if (IsEqualIID(&IID_IUnknown, &riid)) 149 149 * ppvObject = (IRunningObjectTable * )This; 150 150 else 151 if (IsEqualIID( IID_IRunningObjectTable,riid))151 if (IsEqualIID(&IID_IRunningObjectTable, &riid)) 152 152 * ppvObject = (IRunningObjectTable * )This; 153 153 … … 426 426 // GetRunningObjectTable 427 427 // ---------------------------------------------------------------------- 428 HRESULT WIN32API GetRunningObjectTable(DWORD reserved, LP VOID*pprot)428 HRESULT WIN32API GetRunningObjectTable(DWORD reserved, LPRUNNINGOBJECTTABLE *pprot) 429 429 { 430 430 IID riid = IID_IRunningObjectTable; -
trunk/src/ole32/ole32.cpp
r291 r633 505 505 { 506 506 // Check if we have a match on the class ID. 507 if (IsEqualGUID( curClass->classIdentifier,rclsid))507 if (IsEqualGUID(&curClass->classIdentifier, &rclsid)) 508 508 { 509 509 // Since we don't do out-of process or DCOM just right away, -
trunk/src/ole32/ole32.h
r290 r633 28 28 #include <win/wtypes.h> 29 29 #include <winbase.h> 30 #include <uconv.h>30 //#include <uconv.h> 31 31 #undef CALLCONV 32 32 -
trunk/src/ole32/stubs.cpp
r291 r633 1 /*2 *3 * Project Odin Software License can be found in LICENSE.TXT4 *5 */6 1 /* 7 2 * Win32 COM/OLE stubs for OS/2 … … 11 6 * Copyright 1999 David J. Raison 12 7 * Copyright 1998 Sander van Leeuwen 8 * 9 * 10 * Project Odin Software License can be found in LICENSE.TXT 13 11 * 14 12 */
Note:
See TracChangeset
for help on using the changeset viewer.