mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
Serialize QTM, Y2R services
This commit is contained in:
parent
92857efca4
commit
ef2e503281
11 changed files with 97 additions and 2 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/qtm/qtm_c.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_C)
|
||||
|
||||
namespace Service::QTM {
|
||||
|
||||
QTM_C::QTM_C() : ServiceFramework("qtm:c", 2) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::QTM::QTM_C)
|
||||
|
|
|
@ -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/qtm/qtm_s.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_S)
|
||||
|
||||
namespace Service::QTM {
|
||||
|
||||
QTM_S::QTM_S() : ServiceFramework("qtm:s", 2) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::QTM::QTM_S)
|
||||
|
|
|
@ -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/qtm/qtm_sp.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_SP)
|
||||
|
||||
namespace Service::QTM {
|
||||
|
||||
QTM_SP::QTM_SP() : ServiceFramework("qtm:sp", 2) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::QTM::QTM_SP)
|
||||
|
|
|
@ -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/qtm/qtm_u.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_U)
|
||||
|
||||
namespace Service::QTM {
|
||||
|
||||
QTM_U::QTM_U() : ServiceFramework("qtm:u", 2) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::QTM
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::QTM::QTM_U)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue