summaryrefslogtreecommitdiffstats
path: root/src/core/hle/romfs.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-07 19:13:58 +0200
committerLioncash <mathew1800@gmail.com>2018-08-08 01:34:12 +0200
commitcd1a96f3895acf7a1cdc68761029be802bb8defd (patch)
tree93e6bb4fd69c1ab9fed67bda7caf32c961cd1a45 /src/core/hle/romfs.h
parentMerge pull request #971 from DarkLordZach/mbedtls-2.12.0 (diff)
downloadyuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.gz
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.bz2
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.lz
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.xz
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.zst
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/romfs.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/core/hle/romfs.h b/src/core/hle/romfs.h
deleted file mode 100644
index ee9f29760..000000000
--- a/src/core/hle/romfs.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2017 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include <string>
-#include <vector>
-#include "common/common_types.h"
-
-namespace RomFS {
-
-/**
- * Gets the pointer to a file in a RomFS image.
- * @param romfs The pointer to the RomFS image
- * @param path A vector containing the directory names and file name of the path to the file
- * @return the pointer to the file
- * @todo reimplement this with a full RomFS manager
- */
-const u8* GetFilePointer(const u8* romfs, const std::vector<std::u16string>& path);
-
-} // namespace RomFS