segatools/gfxhook/gfx.h

13 lines
180 B
C
Raw Permalink Normal View History

2018-11-08 20:58:15 +00:00
#pragma once
2019-11-06 00:31:51 +00:00
#include <stdbool.h>
struct gfx_config {
bool enable;
bool windowed;
bool framed;
int monitor;
2019-11-06 00:31:51 +00:00
};
2019-10-19 21:04:34 +00:00
void gfx_hook_init(const struct gfx_config *cfg);