home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / msinc.pak / OLE2DBG.H < prev    next >
C/C++ Source or Header  |  1997-07-23  |  637b  |  27 lines

  1. /*
  2.     ole2dbg.h:    This header file contains the function declarations for the publicly
  3.     exported debugging interfaces.
  4.  
  5.     Include *after* standard OLE2 includes.
  6.     
  7. */
  8.  
  9. /*
  10.  *      C/C++ Run Time Library - Version 6.5
  11.  *
  12.  *      Copyright (c) 1994 by Borland International
  13.  *      All Rights Reserved.
  14.  *
  15.  */
  16.  
  17. #ifndef __OLE2DBG_H
  18. #define __OLE2DBG_H
  19.  
  20. STDAPI_(void) DbgDumpObject( IUnknown FAR * pUnk, DWORD dwReserved);
  21. STDAPI_(void) DbgDumpExternalObject( IUnknown FAR * pUnk, DWORD dwReserved );
  22.  
  23. STDAPI_(BOOL) DbgIsObjectValid( IUnknown FAR * pUnk );
  24. STDAPI_(void) DbgDumpClassName( IUnknown FAR * pUnk );
  25.  
  26. #endif
  27.