Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
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.

22 lines
484 B

  1. #ifndef RETURN_H
  2. #define RETURN_H
  3. /* Codes used in some functions by Antoine Lefebvre */
  4. #define SUCCESS 0
  5. #define ERROR -1
  6. /*
  7. Return codes
  8. Mark Pinese 24/4/2000
  9. */
  10. #define ERR_MALLOC -1
  11. #define ERR_FOPEN -2
  12. #define ERR_EOF -3
  13. #define ERR_NOT_ALLOC -4
  14. #define ERR_TOO_MUCH_PRODUCT -5
  15. #define ERR_EQUILIBRIUM -6
  16. #define ERR_AERA_RATIO -7
  17. #define ERR_RATIO_TYPE -8
  18. #endif /* !defined(RETURN_H) */