hooklib/config.c: Add struct gfx_config

This commit is contained in:
Tau
2019-10-19 17:03:17 -04:00
parent dfcf3d8bd1
commit 871b82a8ad
3 changed files with 31 additions and 0 deletions

12
hooklib/config.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include <stdbool.h>
#include <stddef.h>
struct gfx_config {
bool enable;
bool windowed;
bool framed;
};
void gfx_config_load(struct gfx_config *cfg, const wchar_t *filename);