libcm is a C development framework with an emphasis on audio signal processing applications.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

cmDspPgmJsonToDot.h 408B

1234567891011121314151617181920212223242526
  1. #ifndef cmDspPgmJsonToDot_h
  2. #define cmDspPgmJsonToDot_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkDotRC = cmOkRC,
  9. kJsonFailDotRC,
  10. kJsonSyntaxErrDotRC,
  11. kInvalidArgDotRC,
  12. kLHeapFailDotRC,
  13. kFileFailDotRC
  14. };
  15. typedef unsigned cmDotRC_t;
  16. cmDotRC_t cmDspPgmJsonToDot( cmCtx_t* ctx, const cmChar_t* inFn, const cmChar_t* outFn );
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif