Serialize PTM service

This commit is contained in:
Hamish Milne 2020-01-01 22:36:58 +00:00 committed by zhupengfei
parent f5e2f873b0
commit 92857efca4
17 changed files with 77 additions and 3 deletions

View file

@ -2,9 +2,12 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/archives.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/pm/pm_app.h"
SERIALIZE_EXPORT_IMPL(Service::PM::PM_APP)
namespace Service::PM {
PM_APP::PM_APP() : ServiceFramework("pm:app", 3) {

View file

@ -15,3 +15,5 @@ public:
};
} // namespace Service::PM
BOOST_CLASS_EXPORT_KEY(Service::PM::PM_APP)

View file

@ -2,9 +2,12 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/archives.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/pm/pm_dbg.h"
SERIALIZE_EXPORT_IMPL(Service::PM::PM_DBG)
namespace Service::PM {
PM_DBG::PM_DBG() : ServiceFramework("pm:dbg", 3) {

View file

@ -15,3 +15,5 @@ public:
};
} // namespace Service::PM
BOOST_CLASS_EXPORT_KEY(Service::PM::PM_DBG)