Services: Moved the PTM and APT services to their own folder

This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs.

Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
This commit is contained in:
Subv 2015-02-26 21:13:08 -05:00
parent 44f46254dc
commit 83a8975cb8
40 changed files with 1202 additions and 1110 deletions

View file

@ -11,9 +11,6 @@
#include "core/hle/shared_page.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/service/service.h"
#include "core/hle/service/fs/archive.h"
#include "core/hle/service/cfg/cfg.h"
#include "core/hle/service/hid/hid.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
@ -70,9 +67,6 @@ static void RegisterAllModules() {
void Init() {
Service::Init();
Service::FS::ArchiveInit();
Service::CFG::CFGInit();
Service::HID::HIDInit();
RegisterAllModules();
@ -83,9 +77,6 @@ void Init() {
}
void Shutdown() {
Service::HID::HIDShutdown();
Service::CFG::CFGShutdown();
Service::FS::ArchiveShutdown();
Service::Shutdown();
g_module_db.clear();