VirtualBox

source: vbox/trunk/include/VBox/HostServices/VBoxClipboardSvc.h@ 77807

Last change on this file since 77807 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 4.2 KB
Line 
1/** @file
2 * Shared Clipboard - Common header for host service and guest clients.
3 */
4
5/*
6 * Copyright (C) 2006-2019 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_INCLUDED_HostServices_VBoxClipboardSvc_h
27#define VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/VMMDevCoreTypes.h>
33#include <VBox/VBoxGuestCoreTypes.h>
34#include <VBox/hgcmsvc.h>
35
36/*
37 * The mode of operations.
38 */
39#define VBOX_SHARED_CLIPBOARD_MODE_OFF 0
40#define VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST 1
41#define VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST 2
42#define VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL 3
43
44/*
45 * Supported data formats. Bit mask.
46 */
47#define VBOX_SHARED_CLIPBOARD_FMT_UNICODETEXT UINT32_C(0x01)
48#define VBOX_SHARED_CLIPBOARD_FMT_BITMAP UINT32_C(0x02)
49#define VBOX_SHARED_CLIPBOARD_FMT_HTML UINT32_C(0x04)
50
51/*
52 * The service functions which are callable by host.
53 */
54#define VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE 1
55/** Run headless on the host, i.e. do not touch the host clipboard. */
56#define VBOX_SHARED_CLIPBOARD_HOST_FN_SET_HEADLESS 2
57
58/*
59 * The service functions which are called by guest.
60 */
61/* Call host and wait blocking for an host event VBOX_SHARED_CLIPBOARD_HOST_MSG_* */
62#define VBOX_SHARED_CLIPBOARD_FN_GET_HOST_MSG 1
63/* Send list of available formats to host. */
64#define VBOX_SHARED_CLIPBOARD_FN_FORMATS 2
65/* Obtain data in specified format from host. */
66#define VBOX_SHARED_CLIPBOARD_FN_READ_DATA 3
67/* Send data in requested format to host. */
68#define VBOX_SHARED_CLIPBOARD_FN_WRITE_DATA 4
69
70/*
71 * The host messages for the guest.
72 */
73#define VBOX_SHARED_CLIPBOARD_HOST_MSG_QUIT 1
74#define VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA 2
75#define VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS 3
76
77/*
78 * HGCM parameter structures.
79 */
80#pragma pack(1)
81typedef struct _VBoxClipboardGetHostMsg
82{
83 VBGLIOCHGCMCALL hdr;
84
85 /* VBOX_SHARED_CLIPBOARD_HOST_MSG_* */
86 HGCMFunctionParameter msg; /* OUT uint32_t */
87
88 /* VBOX_SHARED_CLIPBOARD_FMT_*, depends on the 'msg'. */
89 HGCMFunctionParameter formats; /* OUT uint32_t */
90} VBoxClipboardGetHostMsg;
91
92#define VBOX_SHARED_CLIPBOARD_CPARMS_GET_HOST_MSG 2
93
94typedef struct _VBoxClipboardFormats
95{
96 VBGLIOCHGCMCALL hdr;
97
98 /* VBOX_SHARED_CLIPBOARD_FMT_* */
99 HGCMFunctionParameter formats; /* OUT uint32_t */
100} VBoxClipboardFormats;
101
102#define VBOX_SHARED_CLIPBOARD_CPARMS_FORMATS 1
103
104typedef struct _VBoxClipboardReadData
105{
106 VBGLIOCHGCMCALL hdr;
107
108 /* Requested format. */
109 HGCMFunctionParameter format; /* IN uint32_t */
110
111 /* The data buffer. */
112 HGCMFunctionParameter ptr; /* IN linear pointer. */
113
114 /* Size of returned data, if > ptr->cb, then no data was
115 * actually transferred and the guest must repeat the call.
116 */
117 HGCMFunctionParameter size; /* OUT uint32_t */
118
119} VBoxClipboardReadData;
120
121#define VBOX_SHARED_CLIPBOARD_CPARMS_READ_DATA 3
122
123typedef struct _VBoxClipboardWriteData
124{
125 VBGLIOCHGCMCALL hdr;
126
127 /* Returned format as requested in the VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA message. */
128 HGCMFunctionParameter format; /* IN uint32_t */
129
130 /* Data. */
131 HGCMFunctionParameter ptr; /* IN linear pointer. */
132} VBoxClipboardWriteData;
133
134#define VBOX_SHARED_CLIPBOARD_CPARMS_WRITE_DATA 2
135
136#pragma pack()
137
138#endif /* !VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h */
Note: See TracBrowser for help on using the repository browser.

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