nwm_uds.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #include "common/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/nwm_uds.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace NWM_UDS
  9. namespace NWM_UDS {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. {0x00030000, nullptr, "Shutdown"},
  12. {0x000F0404, nullptr, "RecvBeaconBroadcastData"},
  13. {0x00100042, nullptr, "SetBeaconAdditionalData"},
  14. {0x001400C0, nullptr, "RecvBroadcastDataFrame"},
  15. {0x001B0302, nullptr, "Initialize"},
  16. {0x001D0044, nullptr, "BeginHostingNetwork"},
  17. {0x001E0084, nullptr, "ConnectToNetwork"},
  18. {0x001F0006, nullptr, "DecryptBeaconData"},
  19. };
  20. ////////////////////////////////////////////////////////////////////////////////////////////////////
  21. // Interface class
  22. Interface::Interface() {
  23. Register(FunctionTable, ARRAY_SIZE(FunctionTable));
  24. }
  25. Interface::~Interface() {
  26. }
  27. } // namespace