aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/news/news.cpp
blob: 63cbd38506e169820ec69ceeeb426f6082a52593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/log.h"

#include "core/hle/service/service.h"
#include "core/hle/service/news/news.h"
#include "core/hle/service/news/news_s.h"
#include "core/hle/service/news/news_u.h"

#include "core/hle/hle.h"
#include "core/hle/kernel/event.h"
#include "core/hle/kernel/shared_memory.h"

namespace Service {
namespace NEWS {

void Init() {
    using namespace Kernel;

    AddService(new NEWS_S_Interface);
    AddService(new NEWS_U_Interface);
}

void Shutdown() {
}

} // namespace NEWS

} // namespace Service