news_u.cpp 439 B

12345678910111213141516171819
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/news/news_u.h"
  5. namespace Service {
  6. namespace NEWS {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. {0x000100C6, nullptr, "AddNotification"},
  9. };
  10. NEWS_U_Interface::NEWS_U_Interface() {
  11. Register(FunctionTable);
  12. }
  13. } // namespace NEWS
  14. } // namespace Service