blob: 2a93acd2a6dc733c25bf8ffe56ca72046729f2c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef POKEREVO_NANDOPENCLOSE_H
#define POKEREVO_NANDOPENCLOSE_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct NANDFileInfo
{
u8 unk0[0x8B]; // TODO: determine actual size
} NANDFileInfo;
s32 NANDOpen(const char* path, NANDFileInfo* info, u8 accType);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_NANDOPENCLOSE_H
|