summaryrefslogtreecommitdiff
path: root/src/core/loader/3dsx.h
diff options
context:
space:
mode:
authorGravatar ichfly2014-12-07 21:47:06 +0100
committerGravatar ichfly2014-12-08 18:06:43 +0100
commit1aa969741dabecd3516ca79b2e7d3106cf9d3d9a (patch)
tree428a01356b9714387e3a932ad5297979e42bd4e6 /src/core/loader/3dsx.h
parentMerge pull request #245 from rohit-n/null-nullptr (diff)
downloadyuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.gz
yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.tar.xz
yuzu-1aa969741dabecd3516ca79b2e7d3106cf9d3d9a.zip
Loader: Add 3DSX support
Diffstat (limited to 'src/core/loader/3dsx.h')
-rw-r--r--src/core/loader/3dsx.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h
new file mode 100644
index 000000000..848d3ef8a
--- /dev/null
+++ b/src/core/loader/3dsx.h
@@ -0,0 +1,32 @@
1// Copyright 2014 Dolphin Emulator Project / Citra Emulator Project
2// Licensed under GPLv2+
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8#include "core/loader/loader.h"
9
10////////////////////////////////////////////////////////////////////////////////////////////////////
11// Loader namespace
12
13namespace Loader {
14
15/// Loads an 3DSX file
16class AppLoader_THREEDSX final : public AppLoader {
17public:
18 AppLoader_THREEDSX(const std::string& filename);
19 ~AppLoader_THREEDSX() override;
20
21 /**
22 * Load the bootable file
23 * @return ResultStatus result of function
24 */
25 ResultStatus Load() override;
26
27private:
28 std::string filename;
29 bool is_loaded;
30};
31
32} // namespace Loader