libcm is a C development framework with an emphasis on audio signal processing applications.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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