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

cmDspPgmJsonToDot.h 518B

123456789101112131415161718192021222324252627282930
  1. #ifndef cmDspPgmJsonToDot_h
  2. #define cmDspPgmJsonToDot_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. //( { file_desc:"Convert a JSON graph description to a DOT vector graphics file." kw:[file plot]}
  7. enum
  8. {
  9. kOkDotRC = cmOkRC,
  10. kJsonFailDotRC,
  11. kJsonSyntaxErrDotRC,
  12. kInvalidArgDotRC,
  13. kLHeapFailDotRC,
  14. kFileFailDotRC
  15. };
  16. typedef unsigned cmDotRC_t;
  17. cmDotRC_t cmDspPgmJsonToDot( cmCtx_t* ctx, const cmChar_t* inFn, const cmChar_t* outFn );
  18. //)
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif