blob: 4c22e704aafd00873cab23ee749d98c3526f8c99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef RVL_SDK_CNT_H
#define RVL_SDK_CNT_H
#include "common.h"
#include "rvl/ARC.h" // IWYU pragma: export
#ifdef __cplusplus
extern "C" {
#endif
typedef struct CNTHandle {
ARCHandle arcHandle; // at 0x0
s32 fd; // at 0x1C
} CNTHandle;
typedef struct CNTFileInfo {
CNTHandle *handle; // at 0x0
u32 offset; // at 0x4
u32 length; // at 0x8
u32 position; // at 0xC
} CNTFileInfo;
s32 contentFastOpenNAND(CNTHandle *handle, s32 entrynum, CNTFileInfo *info);
s32 contentConvertPathToEntrynumNAND(CNTHandle *handle, const char *path);
u32 contentGetLengthNAND(CNTFileInfo *info);
s32 contentReadNAND(CNTFileInfo *info, void *dst, s32 len, s32 offset);
s32 contentCloseNAND(CNTFileInfo *info);
#ifdef __cplusplus
}
#endif
#endif
|