1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-09 23:41:35 +01:00

13 lines
180 B
C
Raw Normal View History

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