2018-11-08 10:17:47 -05:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-17 23:10:09 -04:00
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-05 19:31:11 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct hwmon_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
2019-05-17 23:10:09 -04:00
|
|
|
|
|
|
|
HRESULT hwmon_hook_init(const struct hwmon_config *cfg);
|