diff options
author | James Williams <j.williams97@outlook.com> | 2021-03-06 16:20:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 16:20:05 +0000 |
commit | 03645c295df36374ab4f5c6bf464396699512fb9 (patch) | |
tree | 8fe7df4569bde9e90a90650ecc52f58b81bbd166 /tools/nitrogfx/json.h | |
parent | 6b7b7395fbcfd632bf3a3bcbb9dea4480c455ed2 (diff) | |
parent | cb1c7acb520481b63c12f9ff32b503916128f5eb (diff) |
Merge branch 'master' into who-knows-who
Diffstat (limited to 'tools/nitrogfx/json.h')
-rw-r--r-- | tools/nitrogfx/json.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/nitrogfx/json.h b/tools/nitrogfx/json.h new file mode 100644 index 00000000..f297cf08 --- /dev/null +++ b/tools/nitrogfx/json.h @@ -0,0 +1,13 @@ +// Copyright (c) 2021 red031000 + +#ifndef JSON_H +#define JSON_H + +#include "options.h" + +struct JsonToCellOptions *ParseNCERJson(char *path); +struct JsonToScreenOptions *ParseNSCRJson(char *path); +void FreeNCERCell(struct JsonToCellOptions *options); +void FreeNSCRScreen(struct JsonToScreenOptions *options); + +#endif //JSON_H |