summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-09 21:51:43 +0100
committerGitHub <noreply@github.com>2018-02-09 21:51:43 +0100
commit1add3b20c4b2bf1815e6d6ea2b61845282baac25 (patch)
treee01e249939276a9ed9289c91a6ee7b26a4a5ced7 /src/core/hle/service/nvdrv/interface.h
parentMerge pull request #173 from MerryMage/feature/dynarmic-fix-windows (diff)
parentnvdrv: Fix QueryEvent for libnx. (diff)
downloadyuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar.gz
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar.bz2
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar.lz
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar.xz
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.tar.zst
yuzu-1add3b20c4b2bf1815e6d6ea2b61845282baac25.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.h')
-rw-r--r--src/core/hle/service/nvdrv/interface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.h b/src/core/hle/service/nvdrv/interface.h
index 8c4b068c2..daf2302af 100644
--- a/src/core/hle/service/nvdrv/interface.h
+++ b/src/core/hle/service/nvdrv/interface.h
@@ -6,6 +6,7 @@
#include <memory>
#include <string>
+#include "core/hle/kernel/event.h"
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/service.h"
@@ -29,6 +30,8 @@ private:
std::shared_ptr<Module> nvdrv;
u64 pid{};
+
+ Kernel::SharedPtr<Kernel::Event> query_event;
};
} // namespace Nvidia