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.

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