mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-13 14:20:05 +00:00
Serialize PTM service
This commit is contained in:
parent
f5e2f873b0
commit
92857efca4
17 changed files with 77 additions and 3 deletions
|
@ -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) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::PM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::PM::PM_APP)
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::PM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::PM::PM_DBG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue