mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
Serialize IR, MVD, NDM, NEWS, NFC
This commit is contained in:
parent
3d6e372f96
commit
2409ee39cb
19 changed files with 112 additions and 5 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/news/news_s.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::NEWS::NEWS_S)
|
||||
|
||||
namespace Service::NEWS {
|
||||
|
||||
void NEWS_S::GetTotalNotifications(Kernel::HLERequestContext& ctx) {
|
||||
|
|
|
@ -27,3 +27,5 @@ private:
|
|||
};
|
||||
|
||||
} // namespace Service::NEWS
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::NEWS::NEWS_S)
|
||||
|
|
|
@ -2,8 +2,11 @@
|
|||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "common/archives.h"
|
||||
#include "core/hle/service/news/news_u.h"
|
||||
|
||||
SERIALIZE_EXPORT_IMPL(Service::NEWS::NEWS_U)
|
||||
|
||||
namespace Service::NEWS {
|
||||
|
||||
NEWS_U::NEWS_U() : ServiceFramework("news:u", 1) {
|
||||
|
|
|
@ -15,3 +15,5 @@ public:
|
|||
};
|
||||
|
||||
} // namespace Service::NEWS
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Service::NEWS::NEWS_U)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue