obs-studio/plugins/win-capture/get-graphics-offsets/get-graphics-offsets.h

31 lines
625 B
C

#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "../graphics-hook-info.h"
#define DUMMY_WNDCLASS "get_addrs_wndclass"
#ifdef __cplusplus
extern "C" {
#else
#ifndef inline
#define inline __inline
#endif
#endif
static inline uint32_t vtable_offset(HMODULE module, void *cls,
unsigned int offset)
{
uintptr_t *vtable = *(uintptr_t**)cls;
return (uint32_t)(vtable[offset] - (uintptr_t)module);
}
extern void get_dxgi_offsets(struct dxgi_offsets *offsets);
extern void get_d3d9_offsets(struct d3d9_offsets *offsets);
extern void get_d3d8_offsets(struct d3d8_offsets *offsets);
#ifdef __cplusplus
}
#endif