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.

cmMidiScoreFollow.h 276B

12345678910111213141516171819202122232425
  1. #ifndef cmMidiScoreFollow_h
  2. #define cmMidiScoreFollow_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkMsfRC = cmOkRC,
  9. kFailMsfRC
  10. };
  11. typedef cmRC_t cmMsfRC_t;
  12. cmMsfRC_t cmMidiScoreFollowMain( cmCtx_t* ctx );
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif