2018-11-08 21:12:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-10-20 00:37:43 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-06 01:11:25 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct slider_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
2019-10-20 00:37:43 +00:00
|
|
|
|
|
|
|
HRESULT slider_hook_init(const struct slider_config *cfg);
|