Files
kaizen/lib/source/gainput/dev/GainputDevProtocol.h
Simone 4e42229bdd Squashed 'external/gainput/' content from commit 2be0a50
git-subtree-dir: external/gainput
git-subtree-split: 2be0a50089eafcc6fccb66142180082e48f27f4c
2024-01-22 08:51:55 +01:00

29 lines
391 B
C++

#ifndef GAINPUTDEVPROTOCOL_H_
#define GAINPUTDEVPROTOCOL_H_
namespace gainput
{
enum DevCmd
{
DevCmdHello,
DevCmdDevice,
DevCmdDeviceButton,
DevCmdMap,
DevCmdRemoveMap,
DevCmdUserButton,
DevCmdRemoveUserButton,
DevCmdPing,
DevCmdUserButtonChanged,
DevCmdGetAllInfos,
DevCmdStartDeviceSync,
DevCmdSetDeviceButton,
};
const static unsigned DevProtocolVersion = 0x3;
}
#endif