diff options
| author | 2014-04-13 16:33:45 -0400 | |
|---|---|---|
| committer | 2014-04-13 16:33:45 -0400 | |
| commit | 9f4d677cdf1fcc937d2e68cae3f52f53c24582f8 (patch) | |
| tree | 8d92dbc0b8e568dd67649511c070b31e7ca5d125 /src/core/hle/service/apt.cpp | |
| parent | renamed class Interface_SRV to SRV (diff) | |
| download | yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.gz yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.xz yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.zip | |
added framework for APT service (application and title launching service)
Diffstat (limited to 'src/core/hle/service/apt.cpp')
| -rw-r--r-- | src/core/hle/service/apt.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp new file mode 100644 index 000000000..9ab5a361c --- /dev/null +++ b/src/core/hle/service/apt.cpp | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | |||
| 6 | #include "common/log.h" | ||
| 7 | #include "core/hle/service/apt.h" | ||
| 8 | |||
| 9 | |||
| 10 | |||
| 11 | |||
| 12 | namespace Service { | ||
| 13 | |||
| 14 | |||
| 15 | Syscall::Result APT::Sync() { | ||
| 16 | NOTICE_LOG(HLE, "APT::Sync - Initialize"); | ||
| 17 | return 0; | ||
| 18 | } | ||
| 19 | |||
| 20 | |||
| 21 | } | ||