1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-12 04:40:46 +01:00
segatools-hay1tsme/gfxhook/gfx.h

13 lines
180 B
C
Raw Normal View History

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