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.

51 lines
1.9 KiB

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4. /////////////////////////////////////////////////////////////////////////////
  5. // blddefs.h
  6. // Declaration of constants and error IDs used by objects in the type library
  7. // VISUAL STUDIO 97 PROJECT SYSTEM (SharedIDE\bin\ide\devbld.pkg)
  8. #ifndef __BLDDEFS_H__
  9. #define __BLDDEFS_H__
  10. ///////////////////////////////////////////////////////////////////////
  11. // String constant used by Automation Methods
  12. #define DS_BUILD_PROJECT "Build"
  13. ///////////////////////////////////////////////////////////////////////
  14. // Error constants returned by Automation Methods.
  15. // The configuration represented by this object is no longer valid.
  16. // The configuration may have been removed by the user, or the
  17. // workspace closed since the configuration was last accessed.
  18. #define DS_E_CONFIGURATION_NOT_VALID 0x80040301
  19. // The settings can't be added or removed. Perhaps the tool or options
  20. // specified do not exist.
  21. #define DS_E_CANT_ADD_SETTINGS 0x80040302
  22. #define DS_E_CANT_REMOVE_SETTINGS 0x80040303
  23. // There was an error in the specification of the custom build step.
  24. #define DS_E_CANT_ADD_BUILD_STEP 0x80040304
  25. // The user attempted to manipulate a configuration of the wrong
  26. // platform. For example, trying to manipulate an MIPS configuration
  27. // while running on an Intel machine will cause this error.
  28. #define DS_E_CONFIGURATION_NOT_SUPPORTED 0x80040305
  29. // The project represented by this object is no longer valid. The
  30. // workspace containing that project may have been closed since
  31. // the project was last accessed, for example.
  32. #define DS_E_PROJECT_NOT_VALID 0x80040306
  33. // A build (or RebuildAll) can not be started when a build is already
  34. // in progress. Attempting to do this can cause this error.
  35. #define DS_E_CANT_SPAWN_BUILD 0x80040307
  36. #endif //__BLDDEFS_H__