diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-04-05 00:05:57 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-10 06:03:11 +0200 |
commit | f279e792b7c23a9fabce7c56c53c01fcf4e87547 (patch) | |
tree | 1229e5662adc8976b24471de7bd2dc3857c2ab58 /src/yuzu_tester/service/yuzutest.h | |
parent | yuzu_tester: Add 'yuzutest' service (diff) | |
download | yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.gz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.bz2 yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.lz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.xz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.zst yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu_tester/service/yuzutest.h | 8 |
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 |