Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
534 B

  1. /*
  2. ole2dbg.h: This header file contains the function declarations for the publicly
  3. exported debugging interfaces.
  4. Include *after* standard OLE2 includes.
  5. Copyright (c) 1992-1993, Microsoft Corp. All rights reserved.
  6. */
  7. #ifndef __OLE2DBG_H
  8. #define __OLE2DBG_H
  9. STDAPI_(void) DbgDumpObject( IUnknown FAR * pUnk, DWORD dwReserved);
  10. STDAPI_(void) DbgDumpExternalObject( IUnknown FAR * pUnk, DWORD dwReserved );
  11. STDAPI_(BOOL) DbgIsObjectValid( IUnknown FAR * pUnk );
  12. STDAPI_(void) DbgDumpClassName( IUnknown FAR * pUnk );
  13. #endif