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.

52 lines
1.7 KiB

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