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.

88 lines
2.8 KiB

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4. /////////////////////////////////////////////////////////////////////////////
  5. // appguid.h
  6. // Declaration of GUIDs used for objects found in the type library
  7. // VISUAL STUDIO 97 SHARED OBJECTS (SharedIDE\bin\devshl.dll)
  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 <appguid.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 __APPGUID_H__
  17. #define __APPGUID_H__
  18. /////////////////////////////////////////////////////////////////////////
  19. // Application Object IDs
  20. // {EC1D73A1-8CC4-11cf-9BE9-00A0C90A632C}
  21. DEFINE_GUID(IID_IApplication,
  22. 0xEC1D73A1L,0x8CC4,0x11CF,0x9B,0xE9,0x00,0xA0,0xC9,0x0A,0x63,0x2C);
  23. // {8EA3F900-4A9F-11cf-8E4E-00AA004254C4}
  24. DEFINE_GUID(IID_IApplicationEvents,
  25. 0x8ea3f900, 0x4a9f, 0x11cf, 0x8e, 0x4e, 0x0, 0xaa, 0x0, 0x42, 0x54, 0xc4);
  26. // {FB7FDAE2-89B8-11cf-9BE8-00A0C90A632C}
  27. DEFINE_GUID(CLSID_Application,
  28. 0xfb7fdae2, 0x89b8, 0x11cf, 0x9b, 0xe8, 0x0, 0xa0, 0xc9, 0xa, 0x63, 0x2c);
  29. /////////////////////////////////////////////////////////////////////////
  30. // Document Object IID
  31. // {FB7FDAE1-89B8-11cf-9BE8-00A0C90A632C}
  32. DEFINE_GUID(IID_IGenericDocument,
  33. 0xfb7fdae1, 0x89b8, 0x11cf, 0x9b, 0xe8, 0x0, 0xa0, 0xc9, 0xa, 0x63, 0x2c);
  34. /////////////////////////////////////////////////////////////////////////
  35. // Documents Collection Object IID
  36. // {FB7FDAE3-89B8-11CF-9BE8-00A0C90A632C}
  37. DEFINE_GUID(IID_IDocuments,
  38. 0xFB7FDAE3L,0x89B8,0x11CF,0x9B,0xE8,0x00,0xA0,0xC9,0x0A,0x63,0x2C);
  39. /////////////////////////////////////////////////////////////////////////
  40. // Window Object IID
  41. // {FD20FC80-A9D2-11cf-9C13-00A0C90A632C}
  42. DEFINE_GUID(IID_IGenericWindow,
  43. 0xFD20FC80L,0xA9D2,0x11CF,0x9C,0x13,0x00,0xA0,0xC9,0x0A,0x63,0x2C);
  44. /////////////////////////////////////////////////////////////////////////
  45. // Windows Collection Object IID
  46. // {3928F551-96E6-11cf-9C00-00A0C90A632C}
  47. DEFINE_GUID(IID_IWindows,
  48. 0x3928f551L, 0x96e6, 0x11cf, 0x9c, 0x00, 0x00, 0xa0, 0xc9, 0xa, 0x63, 0x2c);
  49. /////////////////////////////////////////////////////////////////////////
  50. // Project Object IID
  51. // {8CA5A960-FC7D-11cf-927D-00A0C9138C45}
  52. DEFINE_GUID(IID_IGenericProject,
  53. 0x8ca5a960, 0xfc7d, 0x11cf, 0x92, 0x7d, 0x0, 0xa0, 0xc9, 0x13, 0x8c, 0x45);
  54. /////////////////////////////////////////////////////////////////////////
  55. // Projects Collection Object IID
  56. // {13BF7741-A7E8-11cf-AD07-00A0C9034965}
  57. DEFINE_GUID(IID_IProjects,
  58. 0x13BF7741L,0xA7E8,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  59. #endif //__APPGUID_H__