wip: move gfx to gfxhook, some borderless window stuff

This commit is contained in:
2021-11-03 17:14:24 +00:00
parent a24cd0a1a5
commit ea94dd8085
30 changed files with 193 additions and 111 deletions

14
gfxhook/gfx.h Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
struct gfx_config {
bool enable;
bool windowed;
bool framed;
int monitor;
};
void gfx_hook_init(const struct gfx_config *cfg, HINSTANCE self);