diff options
Diffstat (limited to 'include/SDK/NAND/NANDOpenClose.h')
-rw-r--r-- | include/SDK/NAND/NANDOpenClose.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/SDK/NAND/NANDOpenClose.h b/include/SDK/NAND/NANDOpenClose.h new file mode 100644 index 0000000..2b5f52f --- /dev/null +++ b/include/SDK/NAND/NANDOpenClose.h @@ -0,0 +1,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
|