summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-16 04:40:19 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-16 04:40:19 +0200
commit7ec5950bc4c8e4a786df1f4c3392d7b5332d1613 (patch)
tree7d7046dcced5ce635921ebdadabf1a1aa8b0647f /src/core/hle/service/apt.h
parentadded helper functions for upper/lowercase strings (diff)
downloadyuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar.gz
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar.bz2
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar.lz
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar.xz
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.tar.zst
yuzu-7ec5950bc4c8e4a786df1f4c3392d7b5332d1613.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt.h17
1 files changed, 4 insertions, 13 deletions
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 {
@@ -45,14 +45,6 @@ public:
};
/**
- * 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