mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-18 16:31:44 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
21 lines
379 B
C
21 lines
379 B
C
#ifndef MOUSETYPES_H
|
|
#define MOUSETYPES_H
|
|
|
|
#include "BasicTypes.h"
|
|
|
|
//! Mouse button ID
|
|
/*!
|
|
Type to hold a mouse button identifier.
|
|
*/
|
|
typedef UInt8 ButtonID;
|
|
|
|
//! @name Mouse button identifiers
|
|
//@{
|
|
static const ButtonID kButtonNone = 0;
|
|
static const ButtonID kButtonLeft = 1;
|
|
static const ButtonID kButtonMiddle = 2;
|
|
static const ButtonID kButtonRight = 3;
|
|
//@}
|
|
|
|
#endif
|