mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 00:55:45 +00:00
Add all services to the Service namespace
Previously there was a split where some of the services were in the Service namespace and others were not.
This commit is contained in:
parent
a2d474386c
commit
963aedd8cc
50 changed files with 408 additions and 499 deletions
|
@ -4,10 +4,8 @@
|
|||
|
||||
#include "core/hle/service/act_a.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace ACT_A
|
||||
|
||||
namespace ACT_A {
|
||||
namespace Service {
|
||||
namespace ACT {
|
||||
|
||||
const Interface::FunctionInfo FunctionTable[] = {
|
||||
// act:u shared commands
|
||||
|
@ -23,11 +21,9 @@ const Interface::FunctionInfo FunctionTable[] = {
|
|||
{0x04230082, nullptr, "ValidateMailAddress"},
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Interface class
|
||||
|
||||
Interface::Interface() {
|
||||
ACT_A::ACT_A() {
|
||||
Register(FunctionTable);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace ACT
|
||||
} // namespace Service
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue