2015-09-24 23:14:27 +00:00
|
|
|
#ifndef cmDspPgmJsonToDot_h
|
|
|
|
#define cmDspPgmJsonToDot_h
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2015-09-25 22:48:44 +00:00
|
|
|
kOkDotRC = cmOkRC,
|
|
|
|
kJsonFailDotRC,
|
|
|
|
kJsonSyntaxErrDotRC,
|
|
|
|
kInvalidArgDotRC,
|
|
|
|
kLHeapFailDotRC,
|
|
|
|
kFileFailDotRC
|
2015-09-24 23:14:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef unsigned cmDotRC_t;
|
|
|
|
|
2015-09-25 22:48:44 +00:00
|
|
|
cmDotRC_t cmDspPgmJsonToDot( cmCtx_t* ctx, const cmChar_t* inFn, const cmChar_t* outFn );
|
2015-09-24 23:14:27 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|