diff options
| author | 2014-10-28 23:08:37 -0400 | |
|---|---|---|
| committer | 2014-10-29 15:55:51 -0400 | |
| commit | 38df9e96dd39604273a7a3508abb5e2b302b79cd (patch) | |
| tree | 56e092b84815ba02b3d6918524405f25f4c2f251 /src/core/hle/service/apt.h | |
| parent | Merge pull request #151 from archshift/dyncom-enabled (diff) | |
| download | yuzu-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.h | 37 |
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 | |||
| 12 | namespace 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 | ||
| 21 | class Interface : public Service::Interface { | ||
| 22 | public: | ||
| 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 | ||