summaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt.h
diff options
context:
space:
mode:
authorGravatar Gareth Poole2014-10-28 23:08:37 -0400
committerGravatar Gareth Poole2014-10-29 15:55:51 -0400
commit38df9e96dd39604273a7a3508abb5e2b302b79cd (patch)
tree56e092b84815ba02b3d6918524405f25f4c2f251 /src/core/hle/service/apt.h
parentMerge pull request #151 from archshift/dyncom-enabled (diff)
downloadyuzu-38df9e96dd39604273a7a3508abb5e2b302b79cd.tar.gz
yuzu-38df9e96dd39604273a7a3508abb5e2b302b79cd.tar.xz
yuzu-38df9e96dd39604273a7a3508abb5e2b302b79cd.zip
Renamed souce files of services to match port names
Diffstat (limited to 'src/core/hle/service/apt.h')
-rw-r--r--src/core/hle/service/apt.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
deleted file mode 100644
index 5af39e085..000000000
--- a/src/core/hle/service/apt.h
+++ /dev/null
@@ -1,37 +0,0 @@
1// Copyright 2014 Citra Emulator Project
2// Licensed under GPLv2
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "core/hle/service/service.h"
8
9////////////////////////////////////////////////////////////////////////////////////////////////////
10// Namespace APT_U
11
12namespace APT_U {
13
14// Application and title launching service. These services handle signaling for home/power button as
15// well. Only one session for either APT service can be open at a time, normally processes close the
16// service handle immediately once finished using the service. The commands for APT:U and APT:S are
17// exactly the same, however certain commands are only accessible with APT:S(NS module will call
18// svcBreak when the command isn't accessible). See http://3dbrew.org/wiki/NS#APT_Services.
19
20/// Interface to "APT:U" service
21class Interface : public Service::Interface {
22public:
23
24 Interface();
25
26 ~Interface();
27
28 /**
29 * Gets the string port name used by CTROS for the service
30 * @return Port name of service
31 */
32 std::string GetPortName() const override {
33 return "APT:U";
34 }
35};
36
37} // namespace