- Timestamp:
- Mar 21, 2000, 9:19:36 AM (25 years ago)
- Location:
- trunk/src/oleaut32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/itypeinfo.cpp
r2020 r3179 1 /* $Id: itypeinfo.cpp,v 1. 1 1999-12-08 19:58:50davidr Exp $ */1 /* $Id: itypeinfo.cpp,v 1.2 2000-03-21 08:17:22 davidr Exp $ */ 2 2 /* 3 3 * ITypeInfo interface … … 482 482 if (pBstrHelpFile) 483 483 *pBstrHelpFile = DupAtoBstr(This->szDocString);/* FIXME */ 484 484 485 return S_OK; 485 486 } -
trunk/src/oleaut32/itypelib.cpp
r2019 r3179 1 /* $Id: itypelib.cpp,v 1. 1 1999-12-08 19:58:27davidr Exp $ */1 /* $Id: itypelib.cpp,v 1.2 2000-03-21 08:17:22 davidr Exp $ */ 2 2 /* 3 3 * ITypelib interface … … 296 296 ICOM_THIS(ITypeLibImpl, iface); 297 297 298 dprintf(("OLEAUT32: ITypeLibImpl(%p)->GetDocumentation( )\n", This));298 dprintf(("OLEAUT32: ITypeLibImpl(%p)->GetDocumentation(idx = %i)\n", This, index)); 299 299 300 300 /* if index is -Ve this is a request for documentation for the typelib */ … … 304 304 *pBstrName = DupAtoBstr(This->szName); 305 305 if (pBstrDocString) 306 *pBstr Name= DupAtoBstr(This->szDocString);306 *pBstrDocString = DupAtoBstr(This->szDocString); 307 307 if (plHelpContext) 308 308 *plHelpContext = This->lHelpContext; 309 309 if (pBstrHelpFile) 310 *pBstrName = DupAtoBstr(This->szHelpFile); 310 *pBstrHelpFile = DupAtoBstr(This->szHelpFile); 311 311 312 rc = S_OK; 312 313 }
Note:
See TracChangeset
for help on using the changeset viewer.