Programmable real-time audio signal processing application
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.

appErr.h 261B

123456789101112131415161718192021222324
  1. #ifndef appErr_h
  2. #define appErr_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkAppRC,
  9. kQueueFailAppRC,
  10. kFileSysFailAppRC,
  11. kMemFailAppRC,
  12. kTextSysFailAppRC,
  13. kPrefsFailAppRC
  14. };
  15. typedef unsigned cmAppRC_t;
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif