31 regels
518 B
C
31 regels
518 B
C
#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
|