blob: 2b5f52f4adcad64560115d6976f8292b65c70235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef POKEREVO_NANDOPENCLOSE_H
#define POKEREVO_NANDOPENCLOSE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <SDK/NAND/nand.h>
s32 NANDOpen(const char* path, NANDFileInfo* info, u8 accType);
s32 NANDClose(NANDFileInfo* info);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_NANDOPENCLOSE_H
|