VBoxClipboard.h revision 929fb9ebb388276d4f0e544ab804c076669f5bdd
/** @file
*
* Shared Clipboard
*/
/*
* Copyright (C) 2006-2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License as published by the Free Software Foundation,
* in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
* distribution. VirtualBox OSE is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY of any kind.
*
* If you received this file as part of a commercial VirtualBox
* distribution, then only the terms of your commercial VirtualBox
* license agreement apply instead of the previous paragraph.
*/
#ifndef __VBOXCLIPBOARD__H
#define __VBOXCLIPBOARD__H
#define LOG_GROUP LOG_GROUP_HGCM
/** Constants needed for string conversions done by the Linux clipboard code. */
enum {
/** In Linux, lines end with a linefeed character. */
LINEFEED = 0xa,
/** In Windows, lines end with a carriage return and a linefeed character. */
CARRIAGERETURN = 0xd,
/** Little endian "real" Utf16 strings start with this marker. */
UTF16LEMARKER = 0xfeff,
/** Big endian "real" Utf16 strings start with this marker. */
UTF16BEMARKER = 0xfffe
};
enum {
/** The number of milliseconds before the clipboard times out. */
CLIPBOARDTIMEOUT = 2000
};
struct _VBOXCLIPBOARDCONTEXT;
typedef struct _VBOXCLIPBOARDCONTEXT VBOXCLIPBOARDCONTEXT;
typedef struct _VBOXCLIPBOARDCLIENTDATA
{
struct _VBOXCLIPBOARDCLIENTDATA *pNext;
struct _VBOXCLIPBOARDCLIENTDATA *pPrev;
bool fMsgQuit: 1;
bool fMsgReadData: 1;
bool fMsgFormats: 1;
struct {
} async;
struct {
void *pv;
} data;
/*
* The service functions. Locking is between the service thread and the platform dependedn windows thread.
*/
bool vboxSvcClipboardLock (void);
void vboxSvcClipboardUnlock (void);
void vboxSvcClipboardReportMsg (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Msg, uint32_t u32Formats);
/*
* Platform dependent functions.
*/
int vboxClipboardInit (void);
void vboxClipboardDestroy (void);
int vboxClipboardReadData (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Format, void *pv, uint32_t cb, uint32_t *pcbActual);
void vboxClipboardWriteData (VBOXCLIPBOARDCLIENTDATA *pClient, void *pv, uint32_t cb, uint32_t u32Format);
#endif /* __VBOXCLIPBOARD__H */