mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-20 01:11:37 +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.
28 lines
776 B
C
28 lines
776 B
C
#ifndef CLIPBOARDTYPES_H
|
|
#define CLIPBOARDTYPES_H
|
|
|
|
#include "BasicTypes.h"
|
|
|
|
//! Clipboard ID
|
|
/*!
|
|
Type to hold a clipboard identifier.
|
|
*/
|
|
typedef UInt8 ClipboardID;
|
|
|
|
//! @name Clipboard identifiers
|
|
//@{
|
|
// clipboard identifiers. kClipboardClipboard is what is normally
|
|
// considered the clipboard (e.g. the cut/copy/paste menu items
|
|
// affect it). kClipboardSelection is the selection on those
|
|
// platforms that can treat the selection as a clipboard (e.g. X
|
|
// windows). clipboard identifiers must be sequential starting
|
|
// at zero.
|
|
static const ClipboardID kClipboardClipboard = 0;
|
|
static const ClipboardID kClipboardSelection = 1;
|
|
|
|
// the number of clipboards (i.e. one greater than the last clipboard id)
|
|
static const ClipboardID kClipboardEnd = 2;
|
|
//@}
|
|
|
|
#endif
|