libcm is a C development framework with an emphasis on audio signal processing applications.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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