123456789101112131415161718192021222324252627282930 |
- #ifndef cmDspPgmJsonToDot_h
- #define cmDspPgmJsonToDot_h
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- //( { file_desc:"Convert a JSON graph description to a DOT vector graphics file." kw:[file plot]}
-
- enum
- {
- kOkDotRC = cmOkRC,
- kJsonFailDotRC,
- kJsonSyntaxErrDotRC,
- kInvalidArgDotRC,
- kLHeapFailDotRC,
- kFileFailDotRC
- };
-
- typedef unsigned cmDotRC_t;
-
- cmDotRC_t cmDspPgmJsonToDot( cmCtx_t* ctx, const cmChar_t* inFn, const cmChar_t* outFn );
-
- //)
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|