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 540B

123456789101112131415161718192021222324252627282930313233
  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. kSelectorFailSpRC
  18. };
  19. cmSpRC_t cmScoreProc(cmCtx_t* ctx, const cmChar_t* sel, const cmChar_t* pgmRsrcFn, const cmChar_t* outFn);
  20. //)
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif