// Microsoft Visual Studio Object Model // Copyright (C) 1996-1997 Microsoft Corporation // All rights reserved. ///////////////////////////////////////////////////////////////////////////// // appguid.h // Declaration of GUIDs used for objects found in the type library // VISUAL STUDIO 97 SHARED OBJECTS (SharedIDE\bin\devshl.dll) // NOTE!!! This file uses the DEFINE_GUID macro. If you #include // this file in your project, then you must also #include it in // exactly one of your project's other files with a // "#include " beforehand: i.e., // #include // #include // If you fail to do this, you will get UNRESOLVED EXTERNAL linker errors. // The Developer Studio add-in wizard automatically does this for you. #ifndef __APPGUID_H__ #define __APPGUID_H__ ///////////////////////////////////////////////////////////////////////// // Application Object IDs // {EC1D73A1-8CC4-11cf-9BE9-00A0C90A632C} DEFINE_GUID(IID_IApplication, 0xEC1D73A1L,0x8CC4,0x11CF,0x9B,0xE9,0x00,0xA0,0xC9,0x0A,0x63,0x2C); // {8EA3F900-4A9F-11cf-8E4E-00AA004254C4} DEFINE_GUID(IID_IApplicationEvents, 0x8ea3f900, 0x4a9f, 0x11cf, 0x8e, 0x4e, 0x0, 0xaa, 0x0, 0x42, 0x54, 0xc4); // {FB7FDAE2-89B8-11cf-9BE8-00A0C90A632C} DEFINE_GUID(CLSID_Application, 0xfb7fdae2, 0x89b8, 0x11cf, 0x9b, 0xe8, 0x0, 0xa0, 0xc9, 0xa, 0x63, 0x2c); ///////////////////////////////////////////////////////////////////////// // Document Object IID // {FB7FDAE1-89B8-11cf-9BE8-00A0C90A632C} DEFINE_GUID(IID_IGenericDocument, 0xfb7fdae1, 0x89b8, 0x11cf, 0x9b, 0xe8, 0x0, 0xa0, 0xc9, 0xa, 0x63, 0x2c); ///////////////////////////////////////////////////////////////////////// // Documents Collection Object IID // {FB7FDAE3-89B8-11CF-9BE8-00A0C90A632C} DEFINE_GUID(IID_IDocuments, 0xFB7FDAE3L,0x89B8,0x11CF,0x9B,0xE8,0x00,0xA0,0xC9,0x0A,0x63,0x2C); ///////////////////////////////////////////////////////////////////////// // Window Object IID // {FD20FC80-A9D2-11cf-9C13-00A0C90A632C} DEFINE_GUID(IID_IGenericWindow, 0xFD20FC80L,0xA9D2,0x11CF,0x9C,0x13,0x00,0xA0,0xC9,0x0A,0x63,0x2C); ///////////////////////////////////////////////////////////////////////// // Windows Collection Object IID // {3928F551-96E6-11cf-9C00-00A0C90A632C} DEFINE_GUID(IID_IWindows, 0x3928f551L, 0x96e6, 0x11cf, 0x9c, 0x00, 0x00, 0xa0, 0xc9, 0xa, 0x63, 0x2c); ///////////////////////////////////////////////////////////////////////// // Project Object IID // {8CA5A960-FC7D-11cf-927D-00A0C9138C45} DEFINE_GUID(IID_IGenericProject, 0x8ca5a960, 0xfc7d, 0x11cf, 0x92, 0x7d, 0x0, 0xa0, 0xc9, 0x13, 0x8c, 0x45); ///////////////////////////////////////////////////////////////////////// // Projects Collection Object IID // {13BF7741-A7E8-11cf-AD07-00A0C9034965} DEFINE_GUID(IID_IProjects, 0x13BF7741L,0xA7E8,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65); #endif //__APPGUID_H__