- Timestamp:
- Feb 12, 2000, 12:52:22 PM (26 years ago)
- Location:
- trunk/src/ole32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/moniker.cpp
r872 r2764 1 /* $Id: moniker.cpp,v 1. 3 1999-09-08 11:29:27davidr Exp $ */1 /* $Id: moniker.cpp,v 1.4 2000-02-12 11:51:03 davidr Exp $ */ 2 2 /* 3 3 * … … 147 147 * ppvObject = 0; 148 148 149 if (IsEqualIID(&IID_IUnknown, &riid))149 if (IsEqualIID(&IID_IUnknown, riid)) 150 150 * ppvObject = (IRunningObjectTable * )This; 151 151 else 152 if (IsEqualIID(&IID_IRunningObjectTable, &riid))152 if (IsEqualIID(&IID_IRunningObjectTable, riid)) 153 153 * ppvObject = (IRunningObjectTable * )This; 154 154 -
trunk/src/ole32/ole32.cpp
r2362 r2764 1 /* $Id: ole32.cpp,v 1.1 2 2000-01-08 09:27:56davidr Exp $ */1 /* $Id: ole32.cpp,v 1.13 2000-02-12 11:51:03 davidr Exp $ */ 2 2 /* 3 3 * … … 699 699 { 700 700 // Check if we have a match on the class ID. 701 if (IsEqualGUID(&curClass->classIdentifier, &rclsid))701 if (IsEqualGUID(&curClass->classIdentifier, rclsid)) 702 702 { 703 703 // Since we don't do out-of process or DCOM just right away,
Note:
See TracChangeset
for help on using the changeset viewer.