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

cmDspPgm.h 398B

1234567891011121314151617181920212223242526272829
  1. #ifndef cmDspPgm_h
  2. #define cmDspPgm_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef cmDspRC_t (*cmDspPgmFunc_t)( cmDspSysH_t h, void** userPtrPtr );
  7. typedef struct
  8. {
  9. cmChar_t* label;
  10. cmDspPgmFunc_t loadFunc;
  11. void* userPtr;
  12. cmDspPgmFunc_t unloadFunc;
  13. } _cmDspSysPgm_t;
  14. _cmDspSysPgm_t* _cmDspSysPgmArrayBase();
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif