LogisticsErrors.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef LOGISTICSERRORS_H
  2. #define LOGISTICSERRORS_H
  3. /*************************************************************************************************\
  4. LogisticsErrors.h error codes for logistics
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. \*************************************************************************************************/
  9. #define NOT_YET_IMPLEMENTED 1000
  10. #define INVALID_COMPONENT 1001
  11. #define INVALID_PILOT 1001
  12. #define INVALID_ID 1001
  13. #define NEED_BIGGER_ARRAY 1003
  14. #define INVALID_SKILL 1004
  15. #define WRONG_PARAMS 1005
  16. #define NOT_ENOUGH_RESOURCE_POINTS 1006
  17. #define COMPONENT_TOO_HEAVY 1007
  18. #define COMPONENT_SLOT_FULL 1008
  19. #define SENSORS_NOT_ALLOWED 1009
  20. #define ECM_NOT_ALLOWED 1010
  21. #define COMPONENT_TOO_HOT 1011
  22. #define JUMPJETS_NOT_ALLOWED 1012
  23. #define ONLY_ONE_SENSOR_ALLOWED 1013
  24. #define ONLY_ONE_ECM_ALLOWED 1014
  25. #define ONLY_ONE_JUMPJET_ALLOWED 1015
  26. #define INVALID_LOCATION 1016
  27. #define ADD_COMPONENT_FAILED 1017
  28. #define SAVE_NAME_IN_USE 1018
  29. #define NAME_IN_INVENTORY 1019
  30. #define DESIGNER_MECH 1020
  31. #define PILOT_ALREADY_IN_USE 1021
  32. #define MISSION_ALREADY_DONE 1023
  33. #define INVALID_MISSION 1001
  34. #define INVALID_FILE_NAME 1024
  35. #define NO_PURCHASE_FILE 1025
  36. #define COMPONENT_NOT_FOUND 1026
  37. #define INVALID_VARIANT 1027
  38. #define VARIANT_IN_USE 1028
  39. #define NO_MORE_ARMOR 1029
  40. #define INSUFFICIENT_HEAT 1030
  41. //*************************************************************************************************
  42. #endif // end of file ( LogisticsErrors.h )