libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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