mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-02 15:49:48 -04:00
ams: finish stdio -> fs bindings for stratosphere
This commit is contained in:
parent
237b513408
commit
93004be59e
13 changed files with 67 additions and 58 deletions
|
@ -18,6 +18,12 @@
|
|||
#include <vapours.hpp>
|
||||
#include <stratosphere/fs/fs_file.hpp>
|
||||
|
||||
namespace ams::fs::fsa {
|
||||
|
||||
class IFile;
|
||||
|
||||
}
|
||||
|
||||
namespace ams::util::ini {
|
||||
|
||||
/* Ini handler type. */
|
||||
|
@ -26,6 +32,6 @@ namespace ams::util::ini {
|
|||
/* Utilities for dealing with INI file configuration. */
|
||||
int ParseString(const char *ini_str, void *user_ctx, Handler h);
|
||||
int ParseFile(fs::FileHandle file, void *user_ctx, Handler h);
|
||||
int ParseFile(const char *path, void *user_ctx, Handler h);
|
||||
int ParseFile(fs::fsa::IFile *file, void *user_ctx, Handler h);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue