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 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