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 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