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

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

namespace Service {
namespace NEWS {

const Interface::FunctionInfo FunctionTable[] = {
    {0x000100C6, nullptr,               "AddNotification"},
};

NEWS_S_Interface::NEWS_S_Interface() {
    Register(FunctionTable);
}

} // namespace NEWS
} // namespace Service