summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-16 04:42:35 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-16 04:42:35 +0200
commit386dd722e7a2463eadefd3b1fd82681e8edcb5b7 (patch)
tree20fd5439d515afa4cf1035ab15af7af5d2ca77ec /src/core/hle/service/apt.h
parent- extracted srv: calls from service.cpp and put in its own module (diff)
downloadyuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.gz
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.bz2
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.lz
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.xz
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.zst
yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.zip
Diffstat (limited to 'src/core/hle/service/apt.h')
-rw-r--r--src/core/hle/service/apt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
index 0e1f205c7..2be5a7e15 100644
--- a/src/core/hle/service/apt.h
+++ b/src/core/hle/service/apt.h
@@ -9,7 +9,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace Service
-namespace Service {
+namespace APT_U {
// Application and title launching service. These services handle signaling for home/power button as
// well. Only one session for either APT service can be open at a time, normally processes close the
@@ -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_U : public Interface {
+class Interface : public Service::Interface {
public:
- APT_U() {
+ Interface() {
}
- ~APT_U() {
+ ~Interface() {
}
enum {
@@ -62,7 +62,7 @@ private:
Syscall::Result GetLockHandle();
- DISALLOW_COPY_AND_ASSIGN(APT_U);
+ DISALLOW_COPY_AND_ASSIGN(Interface);
};
} // namespace