diff options
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 | } | ||