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.

57 lines
1.8 KiB

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4. /////////////////////////////////////////////////////////////////////////////
  5. // textguid.h
  6. // Declaration of GUIDs used for objects found in the type library
  7. // VISUAL STUDIO 97 TEXT EDITOR (SharedIDE\bin\devedit.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 <textguid.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 __TEXTGUID_H__
  17. #define __TEXTGUID_H__
  18. /////////////////////////////////////////////////////////////////////////
  19. // TextDocument Object IID
  20. // {2A6DF201-8240-11CF-AB59,00AA00C091A1}
  21. DEFINE_GUID(IID_ITextDocument,
  22. 0x2A6DF201L,0x8240,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  23. /////////////////////////////////////////////////////////////////////////
  24. // TextSelection Object IID
  25. // {05092F20-833F-11CF-AB59-00AA00C091A1}
  26. DEFINE_GUID(IID_ITextSelection,
  27. 0x05092F20L,0x833F,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  28. /////////////////////////////////////////////////////////////////////////
  29. // TextWindow Object IID
  30. // {08541520-83D3-11CF-AB59-00AA00C091A1}
  31. DEFINE_GUID(IID_ITextWindow,
  32. 0x08541520L,0x83D3,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  33. /////////////////////////////////////////////////////////////////////////
  34. // TextEditor Object IID
  35. // {0DE5B3A0-A420-11cf-AB59-00AA00C091A1}
  36. DEFINE_GUID(IID_ITextEditor,
  37. 0x0DE5B3A0L,0xA420,0x11CF,0xAB,0x59,0x00,0xAA,0x00,0xC0,0x91,0xA1);
  38. #endif // __TEXTGUID_H__