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.

cmDspPgm.h 475B

12345678910111213141516171819202122232425262728293031
  1. #ifndef cmDspPgm_h
  2. #define cmDspPgm_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. //( { file_desc:"Dataflow program instance interface." kw:[snap] }
  7. typedef cmDspRC_t (*cmDspPgmFunc_t)( cmDspSysH_t h, void** userPtrPtr );
  8. typedef struct
  9. {
  10. cmChar_t* label;
  11. cmDspPgmFunc_t loadFunc;
  12. void* userPtr;
  13. cmDspPgmFunc_t unloadFunc;
  14. } _cmDspSysPgm_t;
  15. _cmDspSysPgm_t* _cmDspSysPgmArrayBase();
  16. //)
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif