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.

48 lines
1.6 KiB

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4. /////////////////////////////////////////////////////////////////////////////
  5. // bldguid.h
  6. // Declaration of GUIDs used for objects found in the type library
  7. // VISUAL STUDIO 97 PROJECT SYSTEM (SharedIDE\bin\ide\devbld.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 <bldguid.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 __BLDGUID_H__
  17. #define __BLDGUID_H__
  18. /////////////////////////////////////////////////////////////////////////
  19. // BuildProject Object IID
  20. // {96961264-A819-11cf-AD07-00A0C9034965}
  21. DEFINE_GUID(IID_IBuildProject,
  22. 0x96961264L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  23. /////////////////////////////////////////////////////////////////////////
  24. // Configuration Object IID
  25. // {96961263-A819-11cf-AD07-00A0C9034965}
  26. DEFINE_GUID(IID_IConfiguration,
  27. 0x96961263L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  28. /////////////////////////////////////////////////////////////////////////
  29. // Configurations Collection Object IID
  30. // {96961260-A819-11cf-AD07-00A0C9034965}
  31. DEFINE_GUID(IID_IConfigurations,
  32. 0x96961260L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  33. #endif //__BLDGUID_H__