1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-02-02 04:37:57 +01:00

17 lines
256 B
C
Raw Normal View History

2018-11-08 15:58:15 -05:00
#pragma once
#include <windows.h>
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, HINSTANCE self);
HRESULT gfx_frame_window(HWND hwnd);