mirror of
https://gitea.tendokyu.moe/TeamTofuShop/segatools.git
synced 2026-09-26 08:18:05 +03:00
14 lines
199 B
C
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);
|