blob: fb86b9402d157b5236f3887cdc29bd8f00f3d87a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "core/hle/result.h"
namespace Service::LDN {
constexpr ResultCode ERROR_DISABLED{ErrorModule::LDN, 22};
} // namespace Service::LDN
|