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.

16 lines
377 B
C
Raw Permalink Normal View History

2015-08-04 21:57:37 -04:00
/*
* fs.h
* by Reisyukaku / Aurora Wright
* Copyright (c) 2016 All Rights Reserved
2015-08-04 21:57:37 -04:00
*/
#pragma once
2015-08-04 21:57:37 -04:00
#include "types.h"
u32 mountFs(void);
2016-03-25 01:58:42 +01:00
u32 fileRead(void *dest, const char *path, u32 size);
u32 fileWrite(const void *buffer, const char *path, u32 size);
u32 fileSize(const char *path);
u32 defPayloadExists(void);
2016-04-11 14:32:38 +02:00
void firmRead(void *dest, const char *firmFolder);