VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard.h@ 4607

Last change on this file since 4607 was 4071, checked in by vboxsync, 18 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/** @file
2 *
3 * Shared Clipboard
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef __VBOXCLIPBOARD__H
19#define __VBOXCLIPBOARD__H
20
21#define LOG_GROUP LOG_GROUP_HGCM
22#include <VBox/log.h>
23
24/** Constants needed for string conversions done by the Linux clipboard code. */
25enum {
26 /** In Linux, lines end with a linefeed character. */
27 LINEFEED = 0xa,
28 /** In Windows, lines end with a carriage return and a linefeed character. */
29 CARRIAGERETURN = 0xd,
30 /** Little endian "real" Utf16 strings start with this marker. */
31 UTF16LEMARKER = 0xfeff,
32 /** Big endian "real" Utf16 strings start with this marker. */
33 UTF16BEMARKER = 0xfffe
34};
35
36enum {
37 /** The number of milliseconds before the clipboard times out. */
38 CLIPBOARDTIMEOUT = 2000
39};
40
41struct _VBOXCLIPBOARDCONTEXT;
42typedef struct _VBOXCLIPBOARDCONTEXT VBOXCLIPBOARDCONTEXT;
43
44
45typedef struct _VBOXCLIPBOARDCLIENTDATA
46{
47 struct _VBOXCLIPBOARDCLIENTDATA *pNext;
48 struct _VBOXCLIPBOARDCLIENTDATA *pPrev;
49
50 VBOXCLIPBOARDCONTEXT *pCtx;
51
52 uint32_t u32ClientID;
53
54 bool fAsync: 1; /* Guest is waiting for a message. */
55
56 bool fMsgQuit: 1;
57 bool fMsgReadData: 1;
58 bool fMsgFormats: 1;
59
60 struct {
61 VBOXHGCMCALLHANDLE callHandle;
62 VBOXHGCMSVCPARM *paParms;
63 } async;
64
65 struct {
66 void *pv;
67 uint32_t cb;
68 uint32_t u32Format;
69 } data;
70
71 uint32_t u32AvailableFormats;
72 uint32_t u32RequestedFormat;
73
74} VBOXCLIPBOARDCLIENTDATA;
75
76/*
77 * The service functions. Locking is between the service thread and the platform dependedn windows thread.
78 */
79bool vboxSvcClipboardLock (void);
80void vboxSvcClipboardUnlock (void);
81
82void vboxSvcClipboardReportMsg (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Msg, uint32_t u32Formats);
83
84
85/*
86 * Platform dependent functions.
87 */
88int vboxClipboardInit (void);
89void vboxClipboardDestroy (void);
90
91int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient);
92void vboxClipboardDisconnect (VBOXCLIPBOARDCLIENTDATA *pClient);
93
94void vboxClipboardFormatAnnounce (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Formats);
95
96int vboxClipboardReadData (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Format, void *pv, uint32_t cb, uint32_t *pcbActual);
97
98void vboxClipboardWriteData (VBOXCLIPBOARDCLIENTDATA *pClient, void *pv, uint32_t cb, uint32_t u32Format);
99
100int vboxClipboardSync (VBOXCLIPBOARDCLIENTDATA *pClient);
101
102#endif /* __VBOXCLIPBOARD__H */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette