home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / objmodel / bldguid.h < prev    next >
C/C++ Source or Header  |  1998-05-05  |  2KB  |  52 lines

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4.  
  5. /////////////////////////////////////////////////////////////////////////////
  6. // bldguid.h
  7.  
  8. // Declaration of GUIDs used for objects found in the type library
  9. //  VISUAL STUDIO 97 PROJECT SYSTEM (SharedIDE\bin\ide\devbld.pkg)
  10.  
  11. // NOTE!!!  This file uses the DEFINE_GUID macro.  If you #include
  12. //  this file in your project, then you must also #include it in
  13. //  exactly one of your project's other files with a 
  14. //  "#include <initguid.h>" beforehand: i.e.,
  15. //        #include <initguid.h>
  16. //        #include <bldguid.h>
  17. //  If you fail to do this, you will get UNRESOLVED EXTERNAL linker errors.
  18. //  The Developer Studio add-in wizard automatically does this for you.
  19.  
  20. #ifndef __BLDGUID_H__
  21. #define __BLDGUID_H__
  22.  
  23. /////////////////////////////////////////////////////////////////////////
  24. // BuildProject Object IID
  25.  
  26. // {96961264-A819-11cf-AD07-00A0C9034965}
  27. struct __declspec(uuid("{96961264-A819-11cf-AD07-00A0C9034965}")) IBuildProject;
  28. DEFINE_GUID(IID_IBuildProject,
  29. 0x96961264L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  30.  
  31.  
  32. /////////////////////////////////////////////////////////////////////////
  33. // Configuration Object IID
  34.  
  35. // {96961263-A819-11cf-AD07-00A0C9034965}
  36. struct __declspec(uuid("{96961263-A819-11cf-AD07-00A0C9034965}")) IConfiguration;
  37. DEFINE_GUID(IID_IConfiguration,
  38. 0x96961263L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////
  42. // Configurations Collection Object IID
  43.  
  44. // {96961260-A819-11cf-AD07-00A0C9034965}
  45. struct __declspec(uuid("{96961260-A819-11cf-AD07-00A0C9034965}")) IConfigurations;
  46. DEFINE_GUID(IID_IConfigurations,
  47. 0x96961260L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
  48.  
  49.  
  50.  
  51. #endif //__BLDGUID_H__
  52.