libcm is a C development framework with an emphasis on audio signal processing applications.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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