From 7ec5950bc4c8e4a786df1f4c3392d7b5332d1613 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 15 Apr 2014 22:40:19 -0400 Subject: - extracted srv: calls from service.cpp and put in its own module - added function tables for service calls - lots of refactoring --- src/core/hle/service/apt.h | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'src/core/hle/service/apt.h') diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h index 3730bc30e..0e1f205c7 100644 --- a/src/core/hle/service/apt.h +++ b/src/core/hle/service/apt.h @@ -17,13 +17,13 @@ namespace Service { // exactly the same, however certain commands are only accessible with APT:S(NS module will call // svcBreak when the command isn't accessible). See http://3dbrew.org/wiki/NS#APT_Services. -class APT : public Interface { +class APT_U : public Interface { public: - APT() { + APT_U() { } - ~APT() { + ~APT_U() { } enum { @@ -44,14 +44,6 @@ public: CMD_HEADER_CLOSE_APP = 0x00270044, ///< Close application }; - /** - * Gets the string name used by CTROS for the APT service - * @return String name of service - */ - std::string GetName() const { - return "APT"; - } - /** * Gets the string port name used by CTROS for the APT service * @return Port name of service @@ -68,10 +60,9 @@ public: private: - Syscall::Result GetLockHandle(); - + DISALLOW_COPY_AND_ASSIGN(APT_U); }; } // namespace -- cgit v1.2.3