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/thread/source/FS.h

16 lines
472 B
C
Raw Normal View History

/*
* FS.h
* by Reisyukaku
* Copyright (c) 2015 All Rights Reserved
*/
2015-08-05 03:57:37 +02:00
#ifndef FS_H
#define FS_H
#include <stdio.h>
extern unsigned int fopen9(void *handle, wchar_t* name, unsigned int flag);
extern void fwrite9(void* handle, unsigned int* bytesWritten, void* dst, unsigned int size);
extern void fread9(void* handle, unsigned int* bytesRead, void *src, unsigned int size);
extern void fsize9(void *handle, long *size);
2015-08-05 03:57:37 +02:00
extern void fclose9(void *handle);
#endif