platform: Add basic hwreset implementation for ALLS

This commit is contained in:
2020-10-07 17:27:23 +00:00
parent 7a807e81ad
commit 3a71af7405
6 changed files with 135 additions and 0 deletions

11
platform/hwreset.h Normal file
View File

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