diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-02 22:04:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 22:04:26 +0100 |
commit | d68eb751c53df785f842d56983ce4dfbb89aae3f (patch) | |
tree | 510752a162e2bbb0e0f5a1e60b499aa4dca0493e /src/core/loader/loader.h | |
parent | Merge pull request #7834 from german77/repeat (diff) | |
parent | common_types: Remove NonCopyable struct (diff) | |
download | yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar.gz yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar.bz2 yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar.lz yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar.xz yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.tar.zst yuzu-d68eb751c53df785f842d56983ce4dfbb89aae3f.zip |
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 7b1bac3f7..8b6b3b68f 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -11,6 +11,7 @@ #include <utility> #include <vector> +#include "common/common_funcs.h" #include "common/common_types.h" #include "core/file_sys/control_metadata.h" #include "core/file_sys/vfs.h" @@ -139,8 +140,11 @@ std::string GetResultStatusString(ResultStatus status); std::ostream& operator<<(std::ostream& os, ResultStatus status); /// Interface for loading an application -class AppLoader : NonCopyable { +class AppLoader { public: + YUZU_NON_COPYABLE(AppLoader); + YUZU_NON_MOVEABLE(AppLoader); + struct LoadParameters { s32 main_thread_priority; u64 main_thread_stack_size; |