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