aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/ndm_u.cpp
blob: 37c0661bf055a6963ba9aa1f3eb4d7bd475e37e8 (plain)
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
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#include "core/hle/hle.h"
#include "ndm_u.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace NDM_U

namespace NDM_U {

const Interface::FunctionInfo FunctionTable[] = {
    {0x00060040, nullptr, "SuspendDaemons"},
    {0x00080040, nullptr, "DisableWifiUsage"},
    {0x00090000, nullptr, "EnableWifiUsage"},
    {0x00140040, nullptr, "OverrideDefaultDaemons"},
};

////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class

Interface::Interface() {
    Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}

Interface::~Interface() {
}

} // namespace