forked from Hay1tsme/segatools
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);
|