aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/apt.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-13 16:33:45 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-13 16:33:45 -0400
commit9f4d677cdf1fcc937d2e68cae3f52f53c24582f8 (patch)
tree8d92dbc0b8e568dd67649511c070b31e7ca5d125 /src/core/hle/service/apt.cpp
parent524e78ece8139ad1adf4c6cf08ff1f705e7af823 (diff)
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.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 00000000..9ab5a361
--- /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;
+}
+
+
+}