summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester/service/yuzutest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu_tester/service/yuzutest.h')
-rw-r--r--src/yuzu_tester/service/yuzutest.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/yuzu_tester/service/yuzutest.h b/src/yuzu_tester/service/yuzutest.h
index e68a24544..eca129c8c 100644
--- a/src/yuzu_tester/service/yuzutest.h
+++ b/src/yuzu_tester/service/yuzutest.h
@@ -13,7 +13,13 @@ class ServiceManager;
namespace Service::Yuzu {
+struct TestResult {
+ u32 code;
+ std::string data;
+ std::string name;
+};
+
void InstallInterfaces(SM::ServiceManager& sm, std::string data,
- std::function<void(u32, std::string)> finish_callback);
+ std::function<void(std::vector<TestResult>)> finish_callback);
} // namespace Service::Yuzu