summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ir/ir_user.cpp
blob: 06a60102948147511a0f77e9cc44ab7411584400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/ir/ir.h"
#include "core/hle/service/ir/ir_user.h"

namespace Service {
namespace IR {

const Interface::FunctionInfo FunctionTable[] = {
    {0x00010182, nullptr,                  "InitializeIrNop"},
    {0x00020000, FinalizeIrNop,            "FinalizeIrNop"},
    {0x00030000, nullptr,                  "ClearReceiveBuffer"},
    {0x00040000, nullptr,                  "ClearSendBuffer"},
    {0x000500C0, nullptr,                  "WaitConnection"},
    {0x00060040, RequireConnection,        "RequireConnection"},
    {0x000702C0, nullptr,                  "AutoConnection"},
    {0x00080000, nullptr,                  "AnyConnection"},
    {0x00090000, Disconnect,               "Disconnect"},
    {0x000A0000, nullptr,                  "GetReceiveEvent"},
    {0x000B0000, nullptr,                  "GetSendEvent"},
    {0x000C0000, GetConnectionStatusEvent, "GetConnectionStatusEvent"},
    {0x000D0042, nullptr,                  "SendIrNop"},
    {0x000E0042, nullptr,                  "SendIrNopLarge"},
    {0x000F0040, nullptr,                  "ReceiveIrnop"},
    {0x00100042, nullptr,                  "ReceiveIrnopLarge"},
    {0x00110040, nullptr,                  "GetLatestReceiveErrorResult"},
    {0x00120040, nullptr,                  "GetLatestSendErrorResult"},
    {0x00130000, nullptr,                  "GetConnectionStatus"},
    {0x00140000, nullptr,                  "GetTryingToConnectStatus"},
    {0x00150000, nullptr,                  "GetReceiveSizeFreeAndUsed"},
    {0x00160000, nullptr,                  "GetSendSizeFreeAndUsed"},
    {0x00170000, nullptr,                  "GetConnectionRole"},
    {0x00180182, InitializeIrNopShared,    "InitializeIrNopShared"},
    {0x00190040, nullptr,                  "ReleaseReceivedData"},
    {0x001A0040, nullptr,                  "SetOwnMachineId"},
};

IR_User_Interface::IR_User_Interface() {
    Register(FunctionTable);
}

} // namespace IR
} // namespace Service