mirror of
https://github.com/red031000/nitrogfx.git
synced 2025-06-19 05:35:41 -04:00
18 lines
563 B
C
18 lines
563 B
C
// Copyright (c) 2021-2024 red031000
|
|
|
|
#ifndef JSON_H
|
|
#define JSON_H
|
|
|
|
#include "options.h"
|
|
|
|
struct JsonToCellOptions *ParseNCERJson(char *path);
|
|
char *GetNCERJson(struct JsonToCellOptions *options);
|
|
struct JsonToScreenOptions *ParseNSCRJson(char *path);
|
|
struct JsonToAnimationOptions *ParseNANRJson(char *path);
|
|
char *GetNANRJson(struct JsonToAnimationOptions *options);
|
|
void FreeNCERCell(struct JsonToCellOptions *options);
|
|
void FreeNSCRScreen(struct JsonToScreenOptions *options);
|
|
void FreeNANRAnimation(struct JsonToAnimationOptions *options);
|
|
|
|
#endif //JSON_H
|