board/guid.c: Add HID class GUID

This commit is contained in:
Tau 2019-03-03 20:02:13 -05:00
parent ba8b8e32fc
commit 0806282bbf
3 changed files with 15 additions and 0 deletions

3
board/guid.c Normal file
View File

@ -0,0 +1,3 @@
#include <initguid.h>
#include "board/guid.h"

10
board/guid.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
#include <windows.h>
DEFINE_GUID(
hid_guid,
0x4D1E55B2L,
0xF16F,
0x11CF,
0x88, 0xCB, 0x00, 0x11, 0x11, 0x00, 0x00, 0x30);

View File

@ -10,6 +10,8 @@ board_lib = static_library(
capnhook.get_variable('hook_dep'),
],
sources : [
'guid.c',
'guid.h',
'io3.c',
'io3.h',
'sg-cmd.c',