summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-13 22:33:45 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-13 22:33:45 +0200
commit9f4d677cdf1fcc937d2e68cae3f52f53c24582f8 (patch)
tree8d92dbc0b8e568dd67649511c070b31e7ca5d125 /src/core/hle/service/apt.cpp
parentrenamed class Interface_SRV to SRV (diff)
downloadyuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.gz
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.bz2
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.lz
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.xz
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.tar.zst
yuzu-9f4d677cdf1fcc937d2e68cae3f52f53c24582f8.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt.cpp21
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 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+
+#include "common/log.h"
+#include "core/hle/service/apt.h"
+
+
+
+
+namespace Service {
+
+
+Syscall::Result APT::Sync() {
+ NOTICE_LOG(HLE, "APT::Sync - Initialize");
+ return 0;
+}
+
+
+}