aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-11-20 18:07:12 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-11-20 18:07:12 +0100
commit0625c5c5a8a8aca6a5122244fce2751e2a29b890 (patch)
treec645fed2a234eb128c4a84c8f18342e77210aaeb /include
parenta5e16f20141b3b5ce0bc19a6ae233e3fecb15a82 (diff)
added DX11Manager for fetching DX11 data for client dlls
Diffstat (limited to 'include')
-rw-r--r--include/DX11Manager.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/DX11Manager.h b/include/DX11Manager.h
new file mode 100644
index 0000000..1c18022
--- /dev/null
+++ b/include/DX11Manager.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <D3D11.h>
+
+struct DxData {
+ HRESULT CreateSwapChainReturn;
+ /* ALL Offsets are relative to the base address of d3d11.dll */
+ UINT64 DeviceVTableOffset;
+ UINT64 DeviceContextVTableOffset;
+ UINT64 SwapChainVTableOffset;
+ BYTE buf[64];
+};
+
+bool WINAPI GetDirectxData(struct DxData * const data); \ No newline at end of file