summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am_app.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-12-15 07:48:55 +0100
committerarchshift <admin@archshift.com>2014-12-16 00:32:41 +0100
commit6b51683bb1e8772260a51a1bbf029fce773ecad8 (patch)
treecfb9e24b59883c1c24383094f7198e9fac3dccb9 /src/core/hle/service/am_app.cpp
parentMerge pull request #276 from lioncash/decrappify (diff)
downloadyuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.gz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.bz2
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.lz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.xz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.zst
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am_app.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/am_app.cpp b/src/core/hle/service/am_app.cpp
new file mode 100644
index 000000000..05c34832b
--- /dev/null
+++ b/src/core/hle/service/am_app.cpp
@@ -0,0 +1,23 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2+
+// Refer to the license.txt file included.
+
+#include "common/log.h"
+#include "core/hle/hle.h"
+#include "core/hle/service/am_app.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace AM_APP
+
+namespace AM_APP {
+
+const Interface::FunctionInfo FunctionTable[] = {
+};
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Interface class
+
+Interface::Interface() {
+ Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+}
+
+} // namespace