mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-13 21:20:50 +01:00
13 lines
180 B
C
13 lines
180 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct gfx_config {
|
|
bool enable;
|
|
bool windowed;
|
|
bool framed;
|
|
int monitor;
|
|
};
|
|
|
|
void gfx_hook_init(const struct gfx_config *cfg);
|