mirror of
https://github.com/Ryuzaki-MrL/savemii.git
synced 2026-03-28 13:11:22 -05:00
14 lines
284 B
C++
14 lines
284 B
C++
#ifndef _JSON_H
|
|
#define _JSON_H
|
|
|
|
#include <cstdio>
|
|
#include <jansson.h>
|
|
#include <string>
|
|
|
|
#include "savemng.h"
|
|
|
|
std::string getSlotDate(uint32_t highID, uint32_t lowID, uint8_t slot);
|
|
|
|
auto setSlotDate(uint32_t highID, uint32_t lowID, uint8_t slot, std::string date) -> bool;
|
|
|
|
#endif |