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