Serialize QTM, Y2R services

This commit is contained in:
Hamish Milne 2020-01-01 22:57:21 +00:00 committed by zhupengfei
parent 92857efca4
commit ef2e503281
11 changed files with 97 additions and 2 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/qtm/qtm_c.h"
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_C)
namespace Service::QTM {
QTM_C::QTM_C() : ServiceFramework("qtm:c", 2) {

View file

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

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/qtm/qtm_s.h"
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_S)
namespace Service::QTM {
QTM_S::QTM_S() : ServiceFramework("qtm:s", 2) {

View file

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

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/qtm/qtm_sp.h"
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_SP)
namespace Service::QTM {
QTM_SP::QTM_SP() : ServiceFramework("qtm:sp", 2) {

View file

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

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/qtm/qtm_u.h"
SERIALIZE_EXPORT_IMPL(Service::QTM::QTM_U)
namespace Service::QTM {
QTM_U::QTM_U() : ServiceFramework("qtm:u", 2) {

View file

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