libcm is a C development framework with an emphasis on audio signal processing applications.
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.

cmScoreProc.h 445B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef cmScoreProc_h
  2. #define cmScoreProc_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. //( { file_desc:"Programs for processing cmScore and peformane data." kw:[score seq]}
  7. typedef unsigned cmSpRC_t;
  8. enum
  9. {
  10. kOkSpRC,
  11. kJsonFailSpRC,
  12. kScoreFailSpRC,
  13. kTimeLineFailSpRC,
  14. kScoreMatchFailSpRC,
  15. kFileFailSpRC,
  16. kProcFailSpRC
  17. };
  18. cmSpRC_t cmScoreProc(cmCtx_t* ctx );
  19. //)
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif