summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nim/nim_s.cpp
blob: 28b87e6f7eb9e51d8429d1745a652e1723d78438 (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
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/nim/nim_s.h"

namespace Service {
namespace NIM {

const Interface::FunctionInfo FunctionTable[] = {
    {0x000A0000, nullptr, "CheckSysupdateAvailableSOAP"},
    {0x0016020A, nullptr, "ListTitles"},
    {0x00290000, nullptr, "AccountCheckBalanceSOAP"},
    {0x002D0042, nullptr, "DownloadTickets"},
    {0x00420240, nullptr, "StartDownload"},
};

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

} // namespace NIM
} // namespace Service