2014-12-09 03:32:29 +00:00
|
|
|
/* Copyright (c) 2013-2014 Jeffrey Pfau
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2015-06-18 08:37:29 +00:00
|
|
|
#ifndef N3DS_VFS_H
|
|
|
|
#define N3DS_VFS_H
|
|
|
|
|
2016-12-31 01:00:22 +00:00
|
|
|
#include <mgba-util/vfs.h>
|
2014-12-09 03:39:07 +00:00
|
|
|
|
2014-12-09 03:32:29 +00:00
|
|
|
#include <3ds.h>
|
|
|
|
|
2016-01-02 09:49:03 +00:00
|
|
|
extern FS_Archive sdmcArchive;
|
2015-08-23 00:21:35 +00:00
|
|
|
|
2016-01-02 09:49:03 +00:00
|
|
|
struct VFile* VFileOpen3DS(FS_Archive* archive, const char* path, int flags);
|
2015-06-18 08:37:29 +00:00
|
|
|
|
|
|
|
#endif
|