This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fs.h

18 lines
343 B
C
Raw Normal View History

2015-08-05 03:57:37 +02:00
/*
* fs.h
*/
#ifndef __fs_h__
#define __fs_h__
#include "types.h"
int mountSD();
int fileReadOffset(u8 *dest, const char *path, u32 size, u32 offset);
int fileRead(u8 *dest, const char *path, u32 size);
int fileWrite(const u8 *buffer, const char *path, u32 size);
int fileSize(const char* path);
int fileExists(const char* path);
2015-08-05 03:57:37 +02:00
#endif