diff options
| author | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-06-11 15:12:16 -0700 |
|---|---|---|
| committer | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-06-11 20:41:59 -0700 |
| commit | 7933dbe6a0eee766a64b26f7d4461a40e473fcdc (patch) | |
| tree | 91ae37d96b1e508f63055f285c64225811237b8a /src/core/hle/service/am_net.cpp | |
| parent | b1cb0a3f2c0ed47ea2a926a8ff04720a91c1b80b (diff) | |
Services: Continue separation of services into their own folders
Diffstat (limited to 'src/core/hle/service/am_net.cpp')
| -rw-r--r-- | src/core/hle/service/am_net.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/core/hle/service/am_net.cpp b/src/core/hle/service/am_net.cpp deleted file mode 100644 index ba2a499f1..000000000 --- a/src/core/hle/service/am_net.cpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include "core/hle/hle.h" -#include "core/hle/service/am_net.h" - -//////////////////////////////////////////////////////////////////////////////////////////////////// -// Namespace AM_NET - -namespace AM_NET { - -const Interface::FunctionInfo FunctionTable[] = { - {0x08010000, nullptr, "OpenTicket"}, - {0x08020002, nullptr, "TicketAbortInstall"}, - {0x08030002, nullptr, "TicketFinalizeInstall"}, - {0x08040100, nullptr, "InstallTitleBegin"}, - {0x08050000, nullptr, "InstallTitleAbort"}, - {0x080600C0, nullptr, "InstallTitleResume"}, - {0x08070000, nullptr, "InstallTitleAbortTMD"}, - {0x08080000, nullptr, "InstallTitleFinish"}, - {0x080A0000, nullptr, "OpenTMD"}, - {0x080B0002, nullptr, "TMDAbortInstall"}, - {0x080C0042, nullptr, "TMDFinalizeInstall"}, - {0x080E0040, nullptr, "OpenContentCreate"}, - {0x080F0002, nullptr, "ContentAbortInstall"}, - {0x08100040, nullptr, "OpenContentResume"}, - {0x08120002, nullptr, "ContentFinalizeInstall"}, - {0x08130000, nullptr, "GetTotalContents"}, - {0x08140042, nullptr, "GetContentIndexes"}, - {0x08150044, nullptr, "GetContentsInfo"}, - {0x08190108, nullptr, "Unknown"}, - {0x081B00C2, nullptr, "InstallTitlesFinish"}, -}; - -//////////////////////////////////////////////////////////////////////////////////////////////////// -// Interface class - -Interface::Interface() { - Register(FunctionTable); -} - -} // namespace |
