libcm is a C development framework with an emphasis on audio signal processing applications.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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