diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-11-20 18:07:12 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-11-20 18:07:12 +0100 |
commit | 0625c5c5a8a8aca6a5122244fce2751e2a29b890 (patch) | |
tree | c645fed2a234eb128c4a84c8f18342e77210aaeb /include | |
parent | a5e16f20141b3b5ce0bc19a6ae233e3fecb15a82 (diff) |
added DX11Manager for fetching DX11 data for client dlls
Diffstat (limited to 'include')
-rw-r--r-- | include/DX11Manager.h | 14 |
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 |