diff options
| author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2019-07-03 20:23:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-03 20:23:56 -0400 |
| commit | beb3d77a79e248212c4645f1e42cac7f46538bda (patch) | |
| tree | 302787c69650a3d9536519c90fb607bead238497 /src/core/hle/service/acc/errors.h | |
| parent | e86af37ecbe3b8728a9c92a406bcce5ad419bc29 (diff) | |
| parent | 7d417d501d8f926d9b3e381810dae655f94c07d5 (diff) | |
Merge pull request #2613 from ogniK5377/InitalizeApplicationInfo
Implemented InitializeApplicationInfo & InitializeApplicationInfoRestricted
Diffstat (limited to 'src/core/hle/service/acc/errors.h')
| -rw-r--r-- | src/core/hle/service/acc/errors.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/errors.h b/src/core/hle/service/acc/errors.h new file mode 100644 index 000000000..1f0577239 --- /dev/null +++ b/src/core/hle/service/acc/errors.h @@ -0,0 +1,14 @@ +// Copyright 2019 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "core/hle/result.h" + +namespace Service::Account { + +constexpr ResultCode ERR_ACCOUNTINFO_BAD_APPLICATION{ErrorModule::Account, 22}; +constexpr ResultCode ERR_ACCOUNTINFO_ALREADY_INITIALIZED{ErrorModule::Account, 41}; + +} // namespace Service::Account |
