diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-01-07 00:10:13 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-01-15 22:23:08 +0100 |
commit | 82ec17db7df53ed1c376d1cdaa9a6587719a546d (patch) | |
tree | 3c2236849146037fbba2fb75ea8a50f53b847a17 /src/core/loader/3dsx.h | |
parent | Loader: Don’t assume the file hasn’t been read before. (diff) | |
download | yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar.gz yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar.bz2 yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar.lz yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar.xz yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.tar.zst yuzu-82ec17db7df53ed1c376d1cdaa9a6587719a546d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/3dsx.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h index 2f2e8bec0..a11667400 100644 --- a/src/core/loader/3dsx.h +++ b/src/core/loader/3dsx.h @@ -18,6 +18,13 @@ public: AppLoader_THREEDSX(std::unique_ptr<FileUtil::IOFile>&& file) : AppLoader(std::move(file)) { } /** + * Returns the type of the file + * @param file FileUtil::IOFile open file + * @return FileType found, or FileType::Error if this loader doesn't know it + */ + static FileType IdentifyType(FileUtil::IOFile& file); + + /** * Load the bootable file * @return ResultStatus result of function */ |