Changeset 7926 for trunk/src/ole32/errorinfo.c
- Timestamp:
- Feb 15, 2002, 6:18:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/errorinfo.c
r6711 r7926 10 10 11 11 #include <string.h> 12 #include "debugtools.h" 12 13 13 #include "windef.h" 14 #include "heap.h" 14 #include "winbase.h" 15 #include "oleauto.h" 15 16 #include "winerror.h" 16 #include "thread.h" 17 #include "debugtools.h" 17 18 18 #include "wine/obj_base.h" 19 19 #include "wine/obj_oleaut.h" 20 20 #include "wine/obj_errorinfo.h" 21 21 #include "wine/unicode.h" 22 #include "thread.h" 23 24 #include "debugtools.h" 22 25 23 26 DEFAULT_DEBUG_CHANNEL(ole); … … 41 44 /* 42 45 * Allocate a new buffer to hold the string. 43 * dont't forget to keep an empty spot at the begin ing of the46 * dont't forget to keep an empty spot at the beginning of the 44 47 * buffer for the character count and an extra character at the 45 * end for the NULL.48 * end for the '\0'. 46 49 */ 47 50 newBuffer = (DWORD*)HeapAlloc(GetProcessHeap(), … … 448 451 }; 449 452 /*********************************************************************** 450 * CreateErrorInfo 453 * CreateErrorInfo (OLE32.192) 451 454 */ 452 455 HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo) … … 464 467 465 468 /*********************************************************************** 466 * GetErrorInfo 469 * GetErrorInfo (OLE32.196) 467 470 */ 468 471 HRESULT WINAPI GetErrorInfo(ULONG dwReserved, IErrorInfo **pperrinfo) … … 479 482 480 483 /*********************************************************************** 481 * SetErrorInfo 484 * SetErrorInfo (OLE32.255) 482 485 */ 483 486 HRESULT WINAPI SetErrorInfo(ULONG dwReserved, IErrorInfo *perrinfo)
Note:
See TracChangeset
for help on using the changeset viewer.