libcm is a C development framework with an emphasis on audio signal processing applications.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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