libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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