2014-05-30 04:24:04 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-05-30 04:24:04 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/hle.h"
|
2014-10-29 03:08:37 +00:00
|
|
|
#include "ndm_u.h"
|
2014-05-30 04:24:04 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace NDM_U
|
|
|
|
|
|
|
|
namespace NDM_U {
|
|
|
|
|
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2015-01-02 00:58:27 +00:00
|
|
|
{0x00010042, nullptr, "EnterExclusiveState"},
|
|
|
|
{0x00020002, nullptr, "LeaveExclusiveState"},
|
|
|
|
{0x00030000, nullptr, "QueryExclusiveMode"},
|
|
|
|
{0x00060040, nullptr, "SuspendDaemons"},
|
|
|
|
{0x00080040, nullptr, "DisableWifiUsage"},
|
|
|
|
{0x00090000, nullptr, "EnableWifiUsage"},
|
|
|
|
{0x00140040, nullptr, "OverrideDefaultDaemons"},
|
2014-05-30 04:24:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
2015-01-30 18:56:49 +00:00
|
|
|
Register(FunctionTable);
|
2014-05-30 04:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|