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