divahook: Add an option to disable slider emulation

This commit is contained in:
5d3b9130281102eb36519ddd0a2c6868ff061a3b
2019-12-29 13:28:32 -04:00
parent 37252be684
commit d32f6ab18b
5 changed files with 26 additions and 3 deletions

View File

@ -2,4 +2,10 @@
#include <windows.h>
HRESULT slider_hook_init(void);
#include <stdbool.h>
struct slider_config {
bool enable;
};
HRESULT slider_hook_init(const struct slider_config *cfg);