nu/gpio.c: Add emulated GPIO controller

This commit is contained in:
Tau
2018-11-08 10:15:34 -05:00
parent 935b1c2c12
commit d791464dd0
4 changed files with 199 additions and 0 deletions

12
nu/gpio.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include <windows.h>
DEFINE_GUID(
gpio_guid,
0xE9A26688,
0xF522,
0x44FA,
0xBF, 0xEE, 0x59, 0xDD, 0x16, 0x15, 0x56, 0x6C);
void gpio_hook_init(void);