diff options
| author | purpasmart96 <kanzoconfigz@hotmail.com> | 2014-12-21 11:52:10 -0800 |
|---|---|---|
| committer | purpasmart96 <kanzoconfigz@hotmail.com> | 2014-12-25 19:08:33 -0800 |
| commit | 9796bc1fa2518ca4780ce63a543444ce5f8a28e4 (patch) | |
| tree | 3f92a6046e9c44b120297095d90fc8eb970ccd54 /src/core/hle/service/news_u.cpp | |
| parent | ae76469373a867ff4b50710ea1a91d2148484d17 (diff) | |
More services & small clean ups
Diffstat (limited to 'src/core/hle/service/news_u.cpp')
| -rw-r--r-- | src/core/hle/service/news_u.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/hle/service/news_u.cpp b/src/core/hle/service/news_u.cpp new file mode 100644 index 000000000..b5adad4c6 --- /dev/null +++ b/src/core/hle/service/news_u.cpp @@ -0,0 +1,25 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "common/log.h" +#include "core/hle/hle.h" +#include "core/hle/service/news_u.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Namespace NEWS_U + +namespace NEWS_U { + +const Interface::FunctionInfo FunctionTable[] = { + {0x000100C8, nullptr, "AddNotification"}, +}; + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Interface class + +Interface::Interface() { + Register(FunctionTable, ARRAY_SIZE(FunctionTable)); +} + +} // namespace |
