segatools/common/gfxhook/gfx.h
2025-04-17 19:40:40 +02:00

14 lines
199 B
C

#pragma once
#include <stdbool.h>
struct gfx_config {
bool enable;
bool windowed;
bool framed;
int monitor;
bool dpiAware;
};
void gfx_hook_init(const struct gfx_config *cfg);