add half-working CXB support

This commit is contained in:
2022-12-11 17:01:51 -05:00
committed by Hay1tsme
parent 60eddedccf
commit edd85ee818
25 changed files with 1082 additions and 0 deletions

11
cxbhook/led.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
struct led_config {
bool enable;
};
HRESULT led_hook_init(struct led_config *cfg);