home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / objmodel / dbgguid.h < prev    next >
C/C++ Source or Header  |  1998-05-05  |  2KB  |  57 lines

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4.  
  5. /////////////////////////////////////////////////////////////////////////////
  6. // dbgguid.h
  7.  
  8. // Declaration of GUIDs used for objects found in the type library
  9. //  VISUAL STUDIO 97 DEBUGGER (SharedIDE\bin\ide\devdbg.pkg)
  10.  
  11. // NOTE!!!  This file uses the DEFINE_GUID macro.  If you #include
  12. //  this file in your project, then you must also #include it in
  13. //  exactly one of your project's other files with a 
  14. //  "#include <initguid.h>" beforehand: i.e.,
  15. //        #include <initguid.h>
  16. //        #include <dbgguid.h>
  17. //  If you fail to do this, you will get UNRESOLVED EXTERNAL linker errors.
  18. //  The Developer Studio add-in wizard automatically does this for you.
  19.  
  20. #ifndef __DBGGUID_H__
  21. #define __DBGGUID_H__
  22.  
  23. /////////////////////////////////////////////////////////////////////////
  24. // Debugger Object IID's
  25.  
  26. // {34C63001-AE64-11cf-AB59-00AA00C091A1}
  27. struct __declspec(uuid("{34C63001-AE64-11cf-AB59-00AA00C091A1}")) IDebugger;
  28. DEFINE_GUID(IID_IDebugger,
  29. 0x34C63001L,0xAE64,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  30.  
  31. // {34C6301A-AE64-11cf-AB59-00AA00C091A1}
  32. struct __declspec(uuid("{34C6301A-AE64-11cf-AB59-00AA00C091A1}")) IDebuggerEvents;
  33. DEFINE_GUID(IID_IDebuggerEvents,
  34. 0x34C6301AL,0xAE64,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  35.  
  36.  
  37. /////////////////////////////////////////////////////////////////////////
  38. // Breakpoint Object IID
  39.  
  40. // {34C63004-AE64-11cf-AB59-00AA00C091A1}
  41. struct __declspec(uuid("{34C63004-AE64-11cf-AB59-00AA00C091A1}")) IBreakpoint;
  42. DEFINE_GUID(IID_IBreakpoint,
  43. 0x34C63004L,0xAE64,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  44.  
  45.  
  46. /////////////////////////////////////////////////////////////////////////
  47. // Breakpoints Collection Object IID
  48.  
  49. // {34C63007-AE64-11cf-AB59-00AA00C091A1}
  50. struct __declspec(uuid("{34C63007-AE64-11cf-AB59-00AA00C091A1}")) IBreakpoints;
  51. DEFINE_GUID(IID_IBreakpoints,
  52. 0x34C63007L,0xAE64,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  53.  
  54.  
  55. #endif // __DBGGUID_H__
  56.  
  57.