add IPC CommandType & Some HID FunctionInfo (#487)

* add some CommandType

* add some hid FunctionInfo

* add some other HID FunctionInfo

* delete non useful comments
This commit is contained in:
greggameplayer 2018-05-30 20:09:21 +02:00 committed by bunnei
parent 8df011a57f
commit 94fecef137
2 changed files with 33 additions and 0 deletions

View file

@ -29,7 +29,10 @@ enum class ControlCommand : u32 {
};
enum class CommandType : u32 {
Invalid = 0,
LegacyRequest = 1,
Close = 2,
LegacyControl = 3,
Request = 4,
Control = 5,
RequestWithContext = 6,