VirtualBox

source: vbox/trunk/include/VBox/GuestHost/SharedClipboard.h@ 73768

Last change on this file since 73768 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/** @file
2 * Shared Clipboard - Common Guest and Host Code.
3 */
4
5/*
6 * Copyright (C) 2006-2017 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_GuestHost_SharedClipboard_h
27#define ___VBox_GuestHost_SharedClipboard_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32enum
33{
34 /** The number of milliseconds before the clipboard times out. */
35#ifndef TESTCASE
36 CLIPBOARD_TIMEOUT = 5000
37#else
38 CLIPBOARD_TIMEOUT = 1
39#endif
40};
41
42/** Opaque data structure for the X11/VBox frontend/glue code. */
43struct _VBOXCLIPBOARDCONTEXT;
44typedef struct _VBOXCLIPBOARDCONTEXT VBOXCLIPBOARDCONTEXT;
45
46/** Opaque data structure for the X11/VBox backend code. */
47struct _CLIPBACKEND;
48typedef struct _CLIPBACKEND CLIPBACKEND;
49
50/** Opaque request structure for clipboard data.
51 * @todo All use of single and double underscore prefixes is banned! */
52struct _CLIPREADCBREQ;
53typedef struct _CLIPREADCBREQ CLIPREADCBREQ;
54
55/* APIs exported by the X11 backend */
56extern CLIPBACKEND *ClipConstructX11(VBOXCLIPBOARDCONTEXT *pFrontend, bool fHeadless);
57extern void ClipDestructX11(CLIPBACKEND *pBackend);
58#ifdef __cplusplus
59extern int ClipStartX11(CLIPBACKEND *pBackend, bool grab = false);
60#else
61extern int ClipStartX11(CLIPBACKEND *pBackend, bool grab);
62#endif
63extern int ClipStopX11(CLIPBACKEND *pBackend);
64extern void ClipAnnounceFormatToX11(CLIPBACKEND *pBackend,
65 uint32_t u32Formats);
66extern int ClipRequestDataFromX11(CLIPBACKEND *pBackend, uint32_t u32Format,
67 CLIPREADCBREQ *pReq);
68
69/* APIs exported by the X11/VBox frontend */
70extern int ClipRequestDataForX11(VBOXCLIPBOARDCONTEXT *pCtx,
71 uint32_t u32Format, void **ppv,
72 uint32_t *pcb);
73extern void ClipReportX11Formats(VBOXCLIPBOARDCONTEXT *pCtx,
74 uint32_t u32Formats);
75extern void ClipCompleteDataRequestFromX11(VBOXCLIPBOARDCONTEXT *pCtx, int rc,
76 CLIPREADCBREQ *pReq, void *pv,
77 uint32_t cb);
78#endif
79
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use