summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester/service/yuzutest.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-03-26 01:31:16 +0100
committerZach Hilman <zachhilman@gmail.com>2019-06-10 06:03:11 +0200
commit5ddc9cede5bc286f4be54c4510ed36f88e0d2756 (patch)
treee65c3717979d746148da3211b522e31495d1f3d5 /src/yuzu_tester/service/yuzutest.h
parentyuzu_tester: Add SDL2-based EmuWindow that doesn't show the window (diff)
downloadyuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar.gz
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar.bz2
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar.lz
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar.xz
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.tar.zst
yuzu-5ddc9cede5bc286f4be54c4510ed36f88e0d2756.zip
Diffstat (limited to 'src/yuzu_tester/service/yuzutest.h')
-rw-r--r--src/yuzu_tester/service/yuzutest.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/yuzu_tester/service/yuzutest.h b/src/yuzu_tester/service/yuzutest.h
new file mode 100644
index 000000000..e68a24544
--- /dev/null
+++ b/src/yuzu_tester/service/yuzutest.h
@@ -0,0 +1,19 @@
+// Copyright 2019 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <functional>
+#include <string>
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::Yuzu {
+
+void InstallInterfaces(SM::ServiceManager& sm, std::string data,
+ std::function<void(u32, std::string)> finish_callback);
+
+} // namespace Service::Yuzu