mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-22 15:45:22 +03:00
900b075e3a
on unix, but client screens don't simulate events other than mouse move. also not supporting clipboard at all yet and the main app is just a temporary framework to test with. must clean up protocol and communication.
14 lines
310 B
C
14 lines
310 B
C
#ifndef MOUSETYPES_H
|
|
#define MOUSETYPES_H
|
|
|
|
// type to hold mouse button identifier
|
|
typedef UInt8 ButtonID;
|
|
|
|
// mouse button identifiers
|
|
static const ButtonID kButtonNone = 0;
|
|
static const ButtonID kButtonLeft = 1;
|
|
static const ButtonID kButtonRight = 2;
|
|
static const ButtonID kButtonMiddle = 3;
|
|
|
|
#endif
|