10 lines
150 B
C
10 lines
150 B
C
|
#pragma once
|
||
|
#include <windows.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
struct led_config {
|
||
|
bool enable;
|
||
|
};
|
||
|
|
||
|
HRESULT led_hook_init(const struct led_config *cfg);
|