summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am_results.h
blob: e82d391adc62b31c77a26c34b997c427da9708cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/result.h"

namespace Service::AM {

constexpr Result ResultNoDataInChannel{ErrorModule::AM, 2};
constexpr Result ResultNoMessages{ErrorModule::AM, 3};
constexpr Result ResultInvalidOffset{ErrorModule::AM, 503};
constexpr Result ResultFatalSectionCountImbalance{ErrorModule::AM, 512};

} // namespace Service::AM