VirtualBox

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

Last change on this file since 82255 was 81796, checked in by vboxsync, 5 years ago

Shared Clipboard: Corrected saved state version.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 37.5 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/**
27 * Protocol handling and notes:
28 * All client/server components should be backwards compatible.
29 *
30 ******************************************************************************
31 *
32 * Protocol changelog:
33 *
34 * VBox < 6.1, deprecated:
35 * | First, initial implementation since feature was developed.
36 * Has no protocol handshake / versioning support, the client's
37 * waiting message also acted as retrieving the parameters from
38 * the host (always and only *exactly* two parameters). Does
39 * not have the ability to control / handle parallel transfers.
40 *
41 * VBox >= 6.1:
42 * + Adds host/guest feature flags and context IDs for parallel,
43 * asynchronous transfers.
44 * | Keeps backwards-compatbility with by translating messages to
45 * the older protocol (< 6.1), to not break compatibility with older
46 * Guest Additions.
47 */
48
49#ifndef VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h
50#define VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h
51#ifndef RT_WITHOUT_PRAGMA_ONCE
52# pragma once
53#endif
54
55#include <VBox/VMMDevCoreTypes.h>
56#include <VBox/VBoxGuestCoreTypes.h>
57#include <VBox/hgcmsvc.h>
58
59#include <VBox/GuestHost/SharedClipboard.h>
60#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
61#include <VBox/GuestHost/SharedClipboard-transfers.h>
62#endif
63
64/*
65 * The saved state versions.
66 * We're using it as a version field with the high bit set.
67 */
68/** Adds the client's POD state and client state flags. */
69#define VBOX_SHCL_SSM_VER_2 UINT32_C(0x80000004)
70/** New saved state (since VBox 6.1 Beta 2). */
71#define VBOX_SHCL_SSM_VER_1 UINT32_C(0x80000003)
72/** Older saved states (VBox < 6.1). Includes legacy protocol state. */
73#define VBOX_SHCL_SSM_VER_0 UINT32_C(0x80000002)
74
75/** Latest Shared Clipboard SSM version. */
76#define VBOX_SHCL_SSM_VER_LATEST VBOX_SHCL_SSM_VER_2
77
78/*
79 * The Shared Clipboard modes of operation.
80 */
81/** Shared Clipboard is disabled completely. */
82#define VBOX_SHCL_MODE_OFF 0
83/** Only transfers from host to the guest are possible. */
84#define VBOX_SHCL_MODE_HOST_TO_GUEST 1
85/** Only transfers from guest to the host are possible. */
86#define VBOX_SHCL_MODE_GUEST_TO_HOST 2
87/** Bidirectional transfers between guest and host are possible. */
88#define VBOX_SHCL_MODE_BIDIRECTIONAL 3
89
90/*
91 * The Shared Clipboard file transfer mode (bit field).
92 */
93/** Shared Clipboard file transfers are disabled. */
94#define VBOX_SHCL_TRANSFER_MODE_DISABLED UINT32_C(0)
95/** Shared Clipboard file transfers are enabled. */
96#define VBOX_SHCL_TRANSFER_MODE_ENABLED RT_BIT(0)
97/** Shared Clipboard file transfer mode valid mask. */
98#define VBOX_SHCL_TRANSFER_MODE_VALID_MASK UINT32_C(0x1)
99
100/*
101 * The service functions which are callable by host.
102 */
103/** Sets the current Shared Clipboard operation mode. */
104#define VBOX_SHCL_HOST_FN_SET_MODE 1
105/** Sets the current Shared Clipboard (file) transfers mode.
106 * Operates on the VBOX_SHCL_TRANSFERS_ defines.
107 *
108 * @since 6.1
109 */
110#define VBOX_SHCL_HOST_FN_SET_TRANSFER_MODE 2
111/** Run headless on the host, i.e. do not touch the host clipboard. */
112#define VBOX_SHCL_HOST_FN_SET_HEADLESS 3
113/** Reports cancellation of the current operation to the guest.
114 * @since 6.1
115 */
116#define VBOX_SHCL_HOST_FN_CANCEL 4
117/** Reports an error to the guest.
118 * @since 6.1
119 */
120#define VBOX_SHCL_HOST_FN_ERROR 5
121/** Reports that a new clipboard area has been registered.
122 * @since 6.1
123 */
124#define VBOX_SHCL_HOST_FN_AREA_REGISTER 6
125/** Reports that a clipboard area has been unregistered.
126 * @since 6.1
127 */
128#define VBOX_SHCL_HOST_FN_AREA_UNREGISTER 7
129/** Reports that a client (host / guest) has attached to a clipboard area.
130 * @since 6.1
131 */
132#define VBOX_SHCL_HOST_FN_AREA_ATTACH 8
133/** Reports that a client (host / guest) has detached from a clipboard area.
134 * @since 6.1
135 */
136#define VBOX_SHCL_HOST_FN_AREA_DETACH 9
137
138/**
139 * The host messages for the guest.
140 */
141/** Asks the client to quit / terminate. */
142#define VBOX_SHCL_HOST_MSG_QUIT 1
143/** Reads (simple) data from the guest. */
144#define VBOX_SHCL_HOST_MSG_READ_DATA 2
145/** Reports available clipboard format from host to the guest.
146 * Formerly known as VBOX_SHCL_HOST_MSG_REPORT_FORMATS. */
147#define VBOX_SHCL_HOST_MSG_FORMATS_REPORT 3
148
149/** Sends a transfer status to the guest side.
150 *
151 * @retval VINF_SUCCESS on success.
152 * @retval VERR_INVALID_CLIENT_ID
153 * @retval VERR_WRONG_PARAMETER_COUNT
154 * @retval VERR_WRONG_PARAMETER_TYPE
155 * @since 6.1
156 */
157#define VBOX_SHCL_HOST_MSG_TRANSFER_STATUS 50
158/** Reads the root list header from the guest.
159 *
160 * @retval VINF_SUCCESS on success.
161 * @retval VERR_INVALID_CLIENT_ID
162 * @retval VERR_WRONG_PARAMETER_COUNT
163 * @retval VERR_WRONG_PARAMETER_TYPE
164 * @since 6.1
165 */
166#define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_READ 51
167/** Writes the root list header to the guest.
168 *
169 * @retval VINF_SUCCESS on success.
170 * @retval VERR_INVALID_CLIENT_ID
171 * @retval VERR_WRONG_PARAMETER_COUNT
172 * @retval VERR_WRONG_PARAMETER_TYPE
173 * @since 6.1
174 */
175#define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_WRITE 52
176/** Reads a root list entry from the guest.
177 *
178 * @retval VINF_SUCCESS on success.
179 * @retval VERR_INVALID_CLIENT_ID
180 * @retval VERR_WRONG_PARAMETER_COUNT
181 * @retval VERR_WRONG_PARAMETER_TYPE
182 * @since 6.1
183 */
184#define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_READ 53
185/** Writes a root list entry to the guest.
186 *
187 * @retval VINF_SUCCESS on success.
188 * @retval VERR_INVALID_CLIENT_ID
189 * @retval VERR_WRONG_PARAMETER_COUNT
190 * @retval VERR_WRONG_PARAMETER_TYPE
191 * @since 6.1
192 */
193#define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_WRITE 54
194/** Open a transfer list on the guest side.
195 *
196 * @retval VINF_SUCCESS on success.
197 * @retval VERR_INVALID_CLIENT_ID
198 * @retval VERR_WRONG_PARAMETER_COUNT
199 * @retval VERR_WRONG_PARAMETER_TYPE
200 * @since 6.1
201 */
202#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_OPEN 55
203/** Closes a formerly opened transfer list on the guest side.
204 *
205 * @retval VINF_SUCCESS on success.
206 * @retval VERR_INVALID_CLIENT_ID
207 * @retval VERR_WRONG_PARAMETER_COUNT
208 * @retval VERR_WRONG_PARAMETER_TYPE
209 * @since 6.1
210 */
211#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_CLOSE 56
212/** Reads a list header from the guest.
213 *
214 * @retval VINF_SUCCESS on success.
215 * @retval VERR_INVALID_CLIENT_ID
216 * @retval VERR_WRONG_PARAMETER_COUNT
217 * @retval VERR_WRONG_PARAMETER_TYPE
218 * @since 6.1
219 */
220#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_READ 57
221/** Writes a list header to the guest.
222 *
223 * @retval VINF_SUCCESS on success.
224 * @retval VERR_INVALID_CLIENT_ID
225 * @retval VERR_WRONG_PARAMETER_COUNT
226 * @retval VERR_WRONG_PARAMETER_TYPE
227 * @since 6.1
228 */
229#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_WRITE 58
230/** Reads a list entry from the guest.
231 *
232 * @retval VINF_SUCCESS on success.
233 * @retval VERR_INVALID_CLIENT_ID
234 * @retval VERR_WRONG_PARAMETER_COUNT
235 * @retval VERR_WRONG_PARAMETER_TYPE
236 * @since 6.1
237 */
238#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_READ 59
239/** Writes a list entry to the guest.
240 *
241 * @retval VINF_SUCCESS on success.
242 * @retval VERR_INVALID_CLIENT_ID
243 * @retval VERR_WRONG_PARAMETER_COUNT
244 * @retval VERR_WRONG_PARAMETER_TYPE
245 * @since 6.1
246 */
247#define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_WRITE 60
248/** Open a transfer object on the guest side.
249 *
250 * @retval VINF_SUCCESS on success.
251 * @retval VERR_INVALID_CLIENT_ID
252 * @retval VERR_WRONG_PARAMETER_COUNT
253 * @retval VERR_WRONG_PARAMETER_TYPE
254 * @since 6.1
255 */
256#define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_OPEN 61
257/** Closes a formerly opened transfer object on the guest side.
258 *
259 * @retval VINF_SUCCESS on success.
260 * @retval VERR_INVALID_CLIENT_ID
261 * @retval VERR_WRONG_PARAMETER_COUNT
262 * @retval VERR_WRONG_PARAMETER_TYPE
263 * @since 6.1
264 */
265#define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_CLOSE 62
266/** Reads from an object on the guest side.
267 *
268 * @retval VINF_SUCCESS on success.
269 * @retval VERR_INVALID_CLIENT_ID
270 * @retval VERR_WRONG_PARAMETER_COUNT
271 * @retval VERR_WRONG_PARAMETER_TYPE
272 * @since 6.1
273 */
274#define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_READ 63
275/** Writes to an object on the guest side.
276 *
277 * @retval VINF_SUCCESS on success.
278 * @retval VERR_INVALID_CLIENT_ID
279 * @retval VERR_WRONG_PARAMETER_COUNT
280 * @retval VERR_WRONG_PARAMETER_TYPE
281 * @since 6.1
282 */
283#define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_WRITE 64
284/** Indicates that the host has canceled a transfer.
285 *
286 * @retval VINF_SUCCESS on success.
287 * @retval VERR_INVALID_CLIENT_ID
288 * @retval VERR_WRONG_PARAMETER_COUNT
289 * @retval VERR_WRONG_PARAMETER_TYPE
290 * @since 6.1
291 */
292#define VBOX_SHCL_HOST_MSG_TRANSFER_CANCEL 65
293/** Indicates that the an unrecoverable error on the host occurred.
294 *
295 * @retval VINF_SUCCESS on success.
296 * @retval VERR_INVALID_CLIENT_ID
297 * @retval VERR_WRONG_PARAMETER_COUNT
298 * @retval VERR_WRONG_PARAMETER_TYPE
299 * @since 6.1
300 */
301#define VBOX_SHCL_HOST_MSG_TRANSFER_ERROR 66
302
303/*
304 * The service functions which are called by guest.
305 */
306/** Calls the host and waits (blocking) for an host event VBOX_SHCL_HOST_MSG_*.
307 * Deprecated, do not use anymore. Kept to not break compatibility with older
308 * Guest Additions / VBox versions. */
309#define VBOX_SHCL_GUEST_FN_GET_HOST_MSG_OLD 1
310/** Sends a list of available formats to the host.
311 * Formely known as VBOX_SHCL_GUEST_FN_REPORT_FORMATS. */
312#define VBOX_SHCL_GUEST_FN_FORMATS_REPORT 2
313/** Reads data in specified format from the host.
314 *
315 * @retval VINF_SUCCESS on success.
316 * @retval For VBox >= 6.1: VINF_BUFFER_OVERLFLOW if not enough buffer space has been given to retrieve the actual data.
317 * The call then must be repeated with a buffer size returned from the host in cbData.
318 * @retval VERR_INVALID_CLIENT_ID
319 * @retval VERR_WRONG_PARAMETER_COUNT
320 * @retval VERR_WRONG_PARAMETER_TYPE
321 */
322#define VBOX_SHCL_GUEST_FN_DATA_READ 3
323/** Writes data in requested format to the host. */
324#define VBOX_SHCL_GUEST_FN_DATA_WRITE 4
325
326/** Does the actual protocol handshake. If this message is not
327 * being sent by the guest, the host handles that particular client
328 * with the legacy protocol (v0).
329 *
330 * @retval VINF_SUCCESS on success.
331 * @retval VERR_INVALID_CLIENT_ID
332 * @retval VERR_WRONG_PARAMETER_COUNT
333 * @retval VERR_WRONG_PARAMETER_TYPE
334 * @since 6.1
335 */
336#define VBOX_SHCL_GUEST_FN_CONNECT 5
337/** Report guest side feature flags and retrieve the host ones.
338 *
339 * The guest replies to the host what features it support in addition.
340 * In return the host will return features the host supports.
341 *
342 * Two 64-bit parameters are passed in from the
343 * guest with the guest features (VBOX_SHCL_GF_XXX), the host replies by
344 * replacing the parameter values with the host ones (VBOX_SHCL_HF_XXX).
345 *
346 * @retval VINF_SUCCESS on success.
347 * @retval VERR_INVALID_CLIENT_ID
348 * @retval VERR_WRONG_PARAMETER_COUNT
349 * @retval VERR_WRONG_PARAMETER_TYPE
350 * @since 6.1
351 */
352#define VBOX_SHCL_GUEST_FN_REPORT_FEATURES 6
353/** Query the host ones feature masks.
354 *
355 * That way the guest (client) can get hold of the features
356 * from the host. Again, it is prudent to set the 127 bit and observe it being
357 * cleared on success, as older hosts might return success without doing
358 * anything.
359 *
360 * @retval VINF_SUCCESS on success.
361 * @retval VERR_INVALID_CLIENT_ID
362 * @retval VERR_WRONG_PARAMETER_COUNT
363 * @retval VERR_WRONG_PARAMETER_TYPE
364 * @since 6.1
365 */
366#define VBOX_SHCL_GUEST_FN_QUERY_FEATURES 7
367/** Peeks at the next message, returning immediately.
368 *
369 * @retval VINF_SUCCESS on success.
370 * @retval VERR_INVALID_CLIENT_ID
371 * @retval VERR_WRONG_PARAMETER_COUNT
372 * @retval VERR_WRONG_PARAMETER_TYPE
373 * @since 6.1
374 */
375#define VBOX_SHCL_GUEST_FN_MSG_PEEK_NOWAIT 8
376/** Peeks at the next message, waiting for one to arrive.
377 *
378 * @retval VINF_SUCCESS on success.
379 * @retval VERR_INVALID_CLIENT_ID
380 * @retval VERR_WRONG_PARAMETER_COUNT
381 * @retval VERR_WRONG_PARAMETER_TYPE
382 * @since 6.1
383 */
384#define VBOX_SHCL_GUEST_FN_MSG_PEEK_WAIT 9
385/** Gets the next message, returning immediately.
386 *
387 * @retval VINF_SUCCESS on success.
388 * @retval VERR_INVALID_CLIENT_ID
389 * @retval VERR_WRONG_PARAMETER_COUNT
390 * @retval VERR_WRONG_PARAMETER_TYPE
391 * @since 6.1
392 */
393#define VBOX_SHCL_GUEST_FN_MSG_GET 10
394/** Replies to a function from the host.
395 *
396 * @retval VINF_SUCCESS on success.
397 * @retval VERR_INVALID_CLIENT_ID
398 * @retval VERR_WRONG_PARAMETER_COUNT
399 * @retval VERR_WRONG_PARAMETER_TYPE
400 * @since 6.1
401 */
402#define VBOX_SHCL_GUEST_FN_REPLY 11
403/** Gets the root list header from the host.
404 *
405 * @retval VINF_SUCCESS on success.
406 * @retval VERR_INVALID_CLIENT_ID
407 * @retval VERR_WRONG_PARAMETER_COUNT
408 * @retval VERR_WRONG_PARAMETER_TYPE
409 * @since 6.1
410 */
411#define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_READ 12
412/** Sends the root list header to the host.
413 *
414 * @retval VINF_SUCCESS on success.
415 * @retval VERR_INVALID_CLIENT_ID
416 * @retval VERR_WRONG_PARAMETER_COUNT
417 * @retval VERR_WRONG_PARAMETER_TYPE
418 * @since 6.1
419 */
420#define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_WRITE 13
421/** Gets a root list root entry from the host.
422 *
423 * @retval VINF_SUCCESS on success.
424 * @retval VERR_INVALID_CLIENT_ID
425 * @retval VERR_WRONG_PARAMETER_COUNT
426 * @retval VERR_WRONG_PARAMETER_TYPE
427 * @since 6.1
428 */
429#define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_READ 14
430/** Sends a root list root entry to the host.
431 *
432 * @retval VINF_SUCCESS on success.
433 * @retval VERR_INVALID_CLIENT_ID
434 * @retval VERR_WRONG_PARAMETER_COUNT
435 * @retval VERR_WRONG_PARAMETER_TYPE
436 * @since 6.1
437 */
438#define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_WRITE 15
439/** Opens / gets a list handle from the host.
440 *
441 * @retval VINF_SUCCESS on success.
442 * @retval VERR_INVALID_CLIENT_ID
443 * @retval VERR_WRONG_PARAMETER_COUNT
444 * @retval VERR_WRONG_PARAMETER_TYPE
445 * @since 6.1
446 */
447#define VBOX_SHCL_GUEST_FN_LIST_OPEN 16
448/** Closes a list handle from the host.
449 *
450 * @retval VINF_SUCCESS on success.
451 * @retval VERR_INVALID_CLIENT_ID
452 * @retval VERR_WRONG_PARAMETER_COUNT
453 * @retval VERR_WRONG_PARAMETER_TYPE
454 * @since 6.1
455 */
456#define VBOX_SHCL_GUEST_FN_LIST_CLOSE 17
457/** Reads a list header from the host.
458 *
459 * @retval VINF_SUCCESS on success.
460 * @retval VERR_INVALID_CLIENT_ID
461 * @retval VERR_WRONG_PARAMETER_COUNT
462 * @retval VERR_WRONG_PARAMETER_TYPE
463 * @since 6.1
464 */
465#define VBOX_SHCL_GUEST_FN_LIST_HDR_READ 18
466/** Writes a list header to the host.
467 *
468 * @retval VINF_SUCCESS on success.
469 * @retval VERR_INVALID_CLIENT_ID
470 * @retval VERR_WRONG_PARAMETER_COUNT
471 * @retval VERR_WRONG_PARAMETER_TYPE
472 * @since 6.1
473 */
474#define VBOX_SHCL_GUEST_FN_LIST_HDR_WRITE 19
475/** Reads a list entry from the host.
476 *
477 * @retval VINF_SUCCESS on success.
478 * @retval VERR_INVALID_CLIENT_ID
479 * @retval VERR_WRONG_PARAMETER_COUNT
480 * @retval VERR_WRONG_PARAMETER_TYPE
481 * @since 6.1
482 */
483#define VBOX_SHCL_GUEST_FN_LIST_ENTRY_READ 20
484/** Sends a list entry to the host.
485 *
486 * @retval VINF_SUCCESS on success.
487 * @retval VERR_INVALID_CLIENT_ID
488 * @retval VERR_WRONG_PARAMETER_COUNT
489 * @retval VERR_WRONG_PARAMETER_TYPE
490 * @since 6.1
491 */
492#define VBOX_SHCL_GUEST_FN_LIST_ENTRY_WRITE 21
493/** Opens an object on the host.
494 *
495 * @retval VINF_SUCCESS on success.
496 * @retval VERR_INVALID_CLIENT_ID
497 * @retval VERR_WRONG_PARAMETER_COUNT
498 * @retval VERR_WRONG_PARAMETER_TYPE
499 * @since 6.1
500 */
501#define VBOX_SHCL_GUEST_FN_OBJ_OPEN 22
502/** Closes an object on the host.
503 *
504 * @retval VINF_SUCCESS on success.
505 * @retval VERR_INVALID_CLIENT_ID
506 * @retval VERR_WRONG_PARAMETER_COUNT
507 * @retval VERR_WRONG_PARAMETER_TYPE
508 * @since 6.1
509 */
510#define VBOX_SHCL_GUEST_FN_OBJ_CLOSE 23
511/** Reads from an object on the host.
512 *
513 * @retval VINF_SUCCESS on success.
514 * @retval VERR_INVALID_CLIENT_ID
515 * @retval VERR_WRONG_PARAMETER_COUNT
516 * @retval VERR_WRONG_PARAMETER_TYPE
517 * @since 6.1
518 */
519#define VBOX_SHCL_GUEST_FN_OBJ_READ 24
520/** Writes to an object on the host.
521 *
522 * @retval VINF_SUCCESS on success.
523 * @retval VERR_INVALID_CLIENT_ID
524 * @retval VERR_WRONG_PARAMETER_COUNT
525 * @retval VERR_WRONG_PARAMETER_TYPE
526 * @since 6.1
527 */
528#define VBOX_SHCL_GUEST_FN_OBJ_WRITE 25
529/** Reports cancellation of the current operation to the host.
530 *
531 * @retval VINF_SUCCESS on success.
532 * @retval VERR_INVALID_CLIENT_ID
533 * @retval VERR_WRONG_PARAMETER_COUNT
534 * @retval VERR_WRONG_PARAMETER_TYPE
535 * @since 6.1
536 */
537#define VBOX_SHCL_GUEST_FN_CANCEL 26
538/** Reports an error to the host.
539 *
540 * @retval VINF_SUCCESS on success.
541 * @retval VERR_INVALID_CLIENT_ID
542 * @retval VERR_WRONG_PARAMETER_COUNT
543 * @retval VERR_WRONG_PARAMETER_TYPE
544 * @since 6.1
545 */
546#define VBOX_SHCL_GUEST_FN_ERROR 27
547
548/** The maximum default chunk size for a single data transfer. */
549#define VBOX_SHCL_MAX_CHUNK_SIZE _64K
550
551/** @name VBOX_SHCL_GF_XXX - Guest features.
552 * @sa VBOX_SHCL_GUEST_FN_REPORT_FEATURES
553 * @{ */
554/** No flags set. */
555#define VBOX_SHCL_GF_NONE 0
556/** Guest can handle context IDs (uint64_t, in paParam[0]).
557 * This is true for Guest Additions < 6.1. */
558#define VBOX_SHCL_GF_0_CONTEXT_ID RT_BIT_64(0)
559/** Bit that must be set in the 2nd parameter, will be cleared if the host reponds
560 * correctly (old hosts might not). */
561#define VBOX_SHCL_GF_1_MUST_BE_ONE RT_BIT_64(63)
562/** @} */
563
564/** @name VBOX_GUESTCTRL_HF_XXX - Host features.
565 * @sa VBOX_SHCL_GUEST_FN_REPORT_FEATURES
566 * @{ */
567/** No flags set. */
568#define VBOX_SHCL_HF_NONE 0
569/** @} */
570
571/*
572 * HGCM parameter structures.
573 */
574#pragma pack(1)
575/**
576 * Waits (blocking) for a new host message to arrive.
577 * Deprecated; do not use anymore.
578 * Kept for maintaining compatibility with older Guest Additions.
579 */
580typedef struct _VBoxShClGetHostMsgOld
581{
582 VBGLIOCHGCMCALL hdr;
583
584 /** uint32_t, out: Host message type. */
585 HGCMFunctionParameter msg;
586 /** uint32_t, out: VBOX_SHCL_FMT_*, depends on the 'msg'.
587 * r=andy This actual can have *different* meanings, depending on the host message type. */
588 HGCMFunctionParameter formats; /* OUT uint32_t */
589} VBoxShClGetHostMsgOld;
590
591#define VBOX_SHCL_CPARMS_GET_HOST_MSG_OLD 2
592
593/**
594 * Message for doing the protocol negotiation between the host
595 * and the guest. Not available on older (VBox <= 6.0) hosts.
596 *
597 * This message acts as a beacon between the old protocol (VBox <= 6.0) and
598 * the new protocol (>= VBox 6.1). Newer features are getting introduced soley via
599 * the guest / host feature flags then.
600 */
601typedef struct _VBoxShClConnect
602{
603 VBGLIOCHGCMCALL hdr;
604
605 /** uint32_t, out: Maximum chunk size for data transfers. */
606 HGCMFunctionParameter cbChunkSize;
607 /** uint32_t, in/out: Compression type. Currently unused. */
608 HGCMFunctionParameter enmCompression;
609 /** uint32_t, in/out: Checksum type used for data transfer. Currently unused. */
610 HGCMFunctionParameter enmChecksumType;
611} VBoxShClConnect;
612
613#define VBOX_SHCL_CPARMS_CONNECT 3
614
615/**
616 * Reports available formats.
617 */
618typedef struct _VBoxShClFormatsMsg
619{
620 VBGLIOCHGCMCALL hdr;
621
622 union
623 {
624 struct
625 {
626 /** uint32_t, out: VBOX_SHCL_FMT_*. */
627 HGCMFunctionParameter uFormats;
628 } v0;
629
630 struct
631 {
632 /** uint64_t, out: Context ID. */
633 HGCMFunctionParameter uContext;
634 /** uint32_t, out: VBOX_SHCL_FMT_*. */
635 HGCMFunctionParameter uFormats;
636 /** uint32_t, out: Format flags. */
637 HGCMFunctionParameter fFlags;
638 } v1;
639 } u;
640} VBoxShClFormatsMsg;
641
642/**
643 * Requests to read clipboard data.
644 */
645typedef struct _VBoxShClReadDataReqMsg
646{
647 VBGLIOCHGCMCALL hdr;
648
649 /** uint64_t, out: Context ID. */
650 HGCMFunctionParameter uContext;
651 /** uint32_t, out: Request flags; currently unused and must be set to 0. */
652 HGCMFunctionParameter fFlags;
653 /** uint32_t, out: Requested format to read data in. */
654 HGCMFunctionParameter uFormat;
655 /** uint32_t, out: Maximum size (in bytes) to read. */
656 HGCMFunctionParameter cbSize;
657} VBoxShClReadDataReqMsg;
658
659#define VBOX_SHCL_CPARMS_READ_DATA_REQ 4
660
661/**
662 * Reads clipboard data.
663 */
664typedef struct _VBoxShClReadDataMsg
665{
666 VBGLIOCHGCMCALL hdr;
667
668 union
669 {
670 struct
671 {
672 /** uint32_t, out: Requested format. */
673 HGCMFunctionParameter format; /* IN uint32_t */
674 /** ptr, out: The data buffer. */
675 HGCMFunctionParameter ptr; /* IN linear pointer. */
676 /** uint32_t, out: Size of returned data, if > ptr->cb, then no data was
677 * actually transferred and the guest must repeat the call.
678 */
679 HGCMFunctionParameter size; /* OUT uint32_t */
680 } v0;
681 struct
682 {
683 /** uint64_t, out: Context ID. */
684 HGCMFunctionParameter uContext;
685 /** uint32_t, out: Read flags; currently unused and must be set to 0. */
686 HGCMFunctionParameter fFlags;
687 /** uint32_t, out: Requested format. */
688 HGCMFunctionParameter uFormat;
689 /** uint32_t, in/out:
690 * On input: How much data to read max.
691 * On output: Size of returned data, if > ptr->cb, then no data was
692 * actually transferred and the guest must repeat the call.
693 */
694 HGCMFunctionParameter cbData;
695 /** ptr, out: The data buffer. */
696 HGCMFunctionParameter pvData;
697 } v1;
698 } u;
699} VBoxShClReadDataMsg;
700
701#define VBOX_SHCL_CPARMS_READ_DATA 5
702
703/**
704 * Writes clipboard data.
705 */
706typedef struct _VBoxShClWriteDataMsg
707{
708 VBGLIOCHGCMCALL hdr;
709
710 union
711 {
712 struct
713 {
714 /** Returned format as requested in the VBOX_SHCL_HOST_MSG_READ_DATA message. */
715 HGCMFunctionParameter format; /* IN uint32_t */
716 /** Data. */
717 HGCMFunctionParameter ptr; /* IN linear pointer. */
718 } v0;
719 struct
720 {
721 /** uint64_t, out: Context ID. */
722 HGCMFunctionParameter uContext;
723 /** uint32_t, out: Write flags; currently unused and must be set to 0. */
724 HGCMFunctionParameter fFlags;
725 /** uint32_t, out: Requested format to read data in. */
726 HGCMFunctionParameter uFormat;
727 /** uint32_t, out: Size of data (in bytes). */
728 HGCMFunctionParameter cbData;
729 /** ptr, out: Actual data. */
730 HGCMFunctionParameter pvData;
731 } v1;
732 } u;
733} VBoxShClWriteDataMsg;
734
735#define VBOX_SHCL_CPARMS_WRITE_DATA 5
736
737/**
738 * Reports a transfer status.
739 */
740typedef struct _VBoxShClTransferStatusMsg
741{
742 VBGLIOCHGCMCALL hdr;
743
744 /** uint64_t, out: Context ID. */
745 HGCMFunctionParameter uContext;
746 /** uint32_t, out: Direction of transfer; of type SHCLTRANSFERDIR_. */
747 HGCMFunctionParameter enmDir;
748 /** uint32_t, out: Status to report; of type SHCLTRANSFERSTATUS_. */
749 HGCMFunctionParameter enmStatus;
750 /** uint32_t, out: Result code to report. Optional. */
751 HGCMFunctionParameter rc;
752 /** uint32_t, out: Reporting flags. Currently unused and must be 0. */
753 HGCMFunctionParameter fFlags;
754} VBoxShClTransferStatusMsg;
755
756#define VBOX_SHCL_CPARMS_TRANSFER_STATUS 5
757
758/**
759 * Asks the host for the next command to process, along
760 * with the needed amount of parameters and an optional blocking
761 * flag.
762 *
763 * Used by: VBOX_SHCL_GUEST_FN_GET_HOST_MSG
764 *
765 */
766typedef struct _VBoxShClGetHostMsg
767{
768 VBGLIOCHGCMCALL hdr;
769
770 /** uint32_t, out: Message ID. */
771 HGCMFunctionParameter uMsg;
772 /** uint32_t, out: Number of parameters the message needs. */
773 HGCMFunctionParameter cParms;
774 /** uint32_t, in: Whether or not to block (wait) for a new message to arrive. */
775 HGCMFunctionParameter fBlock;
776} VBoxShClPeekMsg;
777
778#define VBOX_SHCL_CPARMS_GET_HOST_MSG 3
779
780/** No listing flags specified. */
781#define VBOX_SHCL_LIST_FLAG_NONE 0
782/** Only returns one entry per read. */
783#define VBOX_SHCL_LIST_FLAG_RETURN_ONE RT_BIT(0)
784/** Restarts reading a list from the beginning. */
785#define VBOX_SHCL_LIST_FLAG_RESTART RT_BIT(1)
786
787#define VBOX_SHCL_LISTHDR_FLAG_NONE 0
788
789/** No additional information provided. */
790#define VBOX_SHCL_INFO_FLAG_NONE 0
791/** Get object information of type SHCLFSOBJINFO. */
792#define VBOX_SHCL_INFO_FLAG_FSOBJINFO RT_BIT(0)
793
794/**
795 * Status messag for lists and objects.
796 */
797typedef struct _VBoxShClStatusMsg
798{
799 VBGLIOCHGCMCALL hdr;
800
801 /** uint64_t, in: Context ID. */
802 HGCMFunctionParameter uContext;
803 /** uint32_t, in: Transfer status of type SHCLTRANSFERSTATUS. */
804 HGCMFunctionParameter uStatus;
805 /** uint32_t, in: Size of payload of this status, based on the status type. */
806 HGCMFunctionParameter cbPayload;
807 /** pointer, in: Optional payload of this status, based on the status type. */
808 HGCMFunctionParameter pvPayload;
809} VBoxShClStatusMsg;
810
811#define VBOX_SHCL_CPARMS_STATUS 4
812
813/** Invalid message type, do not use. */
814#define VBOX_SHCL_REPLYMSGTYPE_INVALID 0
815/** Replies a transfer status. */
816#define VBOX_SHCL_REPLYMSGTYPE_TRANSFER_STATUS 1
817/** Replies a list open status. */
818#define VBOX_SHCL_REPLYMSGTYPE_LIST_OPEN 2
819/** Replies a list close status. */
820#define VBOX_SHCL_REPLYMSGTYPE_LIST_CLOSE 3
821/** Replies an object open status. */
822#define VBOX_SHCL_REPLYMSGTYPE_OBJ_OPEN 4
823/** Replies an object close status. */
824#define VBOX_SHCL_REPLYMSGTYPE_OBJ_CLOSE 5
825
826/**
827 * Generic reply message.
828 */
829typedef struct _VBoxShClReplyMsg
830{
831 VBGLIOCHGCMCALL hdr;
832
833 /** uint64_t, out: Context ID. */
834 HGCMFunctionParameter uContext;
835 /** uint32_t, out: Message type of type VBOX_SHCL_REPLYMSGTYPE_XXX. */
836 HGCMFunctionParameter enmType;
837 /** uint32_t, out: IPRT result of overall operation. */
838 HGCMFunctionParameter rc;
839 /** uint32_t, out: Size of optional payload of this reply, based on the message type. */
840 HGCMFunctionParameter cbPayload;
841 /** pointer, out: Optional payload of this reply, based on the message type. */
842 HGCMFunctionParameter pvPayload;
843 union
844 {
845 struct
846 {
847 HGCMFunctionParameter enmStatus;
848 } TransferStatus;
849 struct
850 {
851 HGCMFunctionParameter uHandle;
852 } ListOpen;
853 struct
854 {
855 HGCMFunctionParameter uHandle;
856 } ObjOpen;
857 struct
858 {
859 HGCMFunctionParameter uHandle;
860 } ObjClose;
861 } u;
862} VBoxShClReplyMsg;
863
864/** Minimum parameters (HGCM function parameters minus the union) a reply message must have. */
865#define VBOX_SHCL_CPARMS_REPLY_MIN 5
866
867/**
868 * Structure for keeping root list message parameters.
869 */
870typedef struct _VBoxShClRootListParms
871{
872 /** uint64_t, in: Context ID. */
873 HGCMFunctionParameter uContext;
874 /** uint32_t, in: Roots listing flags; unused at the moment. */
875 HGCMFunctionParameter fRoots;
876} VBoxShClRootListParms;
877
878/**
879 * Requests to read the root list header.
880 */
881typedef struct _VBoxShClRootListReadReqMsg
882{
883 VBGLIOCHGCMCALL hdr;
884
885 VBoxShClRootListParms ReqParms;
886} VBoxShClRootListReadReqMsg;
887
888#define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_READ_REQ 2
889
890/**
891 * Reads / Writes a root list header.
892 */
893typedef struct _VBoxShClRootListHdrMsg
894{
895 VBGLIOCHGCMCALL hdr;
896
897 VBoxShClRootListParms ReqParms;
898 /** uint64_t, in/out: Number of total root list entries. */
899 HGCMFunctionParameter cRoots;
900} VBoxShClRootListHdrMsg;
901
902#define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_READ 3
903#define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_WRITE 3
904
905/**
906 * Structure for keeping list entry message parameters.
907 */
908typedef struct _VBoxShClRootListEntryParms
909{
910 /** uint64_t, in: Context ID. */
911 HGCMFunctionParameter uContext;
912 /** uint32_t, in: VBOX_SHCL_INFO_FLAG_XXX. */
913 HGCMFunctionParameter fInfo;
914 /** uint32_t, in: Index of root list entry to get (zero-based). */
915 HGCMFunctionParameter uIndex;
916} VBoxShClRootListEntryParms;
917
918/**
919 * Request to read a list root entry.
920 */
921typedef struct _VBoxShClRootListEntryReadReqMsg
922{
923 VBGLIOCHGCMCALL hdr;
924
925 /** in: Request parameters. */
926 VBoxShClRootListEntryParms Parms;
927} VBoxShClRootListEntryReadReqMsg;
928
929#define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_READ_REQ 3
930
931/**
932 * Reads / Writes a root list entry.
933 */
934typedef struct _VBoxShClRootListEntryMsg
935{
936 VBGLIOCHGCMCALL hdr;
937
938 /** in/out: Request parameters. */
939 VBoxShClRootListEntryParms Parms;
940 /** pointer, in/out: Entry name. */
941 HGCMFunctionParameter szName;
942 /** uint32_t, out: Bytes to be used for information/How many bytes were used. */
943 HGCMFunctionParameter cbInfo;
944 /** pointer, in/out: Information to be set/get (SHCLFSOBJINFO only currently).
945 * Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well. */
946 HGCMFunctionParameter pvInfo;
947} VBoxShClRootListEntryMsg;
948
949#define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_READ 6
950#define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_WRITE 6
951
952/**
953 * Opens a list.
954 */
955typedef struct _VBoxShClListOpenMsg
956{
957 VBGLIOCHGCMCALL hdr;
958
959 /** uint64_t, in: Context ID. */
960 HGCMFunctionParameter uContext;
961 /** uint32_t, in: Listing flags (see VBOX_SHCL_LIST_FLAG_XXX). */
962 HGCMFunctionParameter fList;
963 /** uint32_t, in: Size (in bytes) of the filter string. */
964 HGCMFunctionParameter cbFilter;
965 /** pointer, in: Filter string. */
966 HGCMFunctionParameter pvFilter;
967 /** uint32_t, in: Size (in bytes) of the listing path. */
968 HGCMFunctionParameter cbPath;
969 /** pointer, in: Listing poth. If empty or NULL the listing's root path will be opened. */
970 HGCMFunctionParameter pvPath;
971 /** uint64_t, out: List handle. */
972 HGCMFunctionParameter uHandle;
973} VBoxShClListOpenMsg;
974
975#define VBOX_SHCL_CPARMS_LIST_OPEN 7
976
977/**
978 * Closes a list.
979 */
980typedef struct _VBoxShClListCloseMsg
981{
982 VBGLIOCHGCMCALL hdr;
983
984 /** uint64_t, in/out: Context ID. */
985 HGCMFunctionParameter uContext;
986 /** uint64_t, in: List handle. */
987 HGCMFunctionParameter uHandle;
988} VBoxShClListCloseMsg;
989
990#define VBOX_SHCL_CPARMS_LIST_CLOSE 2
991
992typedef struct _VBoxShClListHdrReqParms
993{
994 /** uint64_t, in: Context ID. */
995 HGCMFunctionParameter uContext;
996 /** uint64_t, in: List handle. */
997 HGCMFunctionParameter uHandle;
998 /** uint32_t, in: Flags of type VBOX_SHCL_LISTHDR_FLAG_XXX. */
999 HGCMFunctionParameter fFlags;
1000} VBoxShClListHdrReqParms;
1001
1002/**
1003 * Request to read a list header.
1004 */
1005typedef struct _VBoxShClListHdrReadReqMsg
1006{
1007 VBGLIOCHGCMCALL hdr;
1008
1009 VBoxShClListHdrReqParms ReqParms;
1010} VBoxShClListHdrReadReqMsg;
1011
1012#define VBOX_SHCL_CPARMS_LIST_HDR_READ_REQ 3
1013
1014/**
1015 * Reads / Writes a list header.
1016 */
1017typedef struct _VBoxShClListHdrMsg
1018{
1019 VBGLIOCHGCMCALL hdr;
1020
1021 VBoxShClListHdrReqParms ReqParms;
1022 /** uint32_t, in/out: Feature flags (see VBOX_SHCL_FEATURE_FLAG_XXX). */
1023 HGCMFunctionParameter fFeatures;
1024 /** uint64_t, in/out: Number of total objects to transfer. */
1025 HGCMFunctionParameter cTotalObjects;
1026 /** uint64_t, in/out: Number of total bytes to transfer. */
1027 HGCMFunctionParameter cbTotalSize;
1028} VBoxShClListHdrMsg;
1029
1030#define VBOX_SHCL_CPARMS_LIST_HDR 6
1031
1032typedef struct _VBoxShClListEntryReqParms
1033{
1034 /** uint64_t, in: Context ID. */
1035 HGCMFunctionParameter uContext;
1036 /** uint64_t, in: List handle. */
1037 HGCMFunctionParameter uHandle;
1038 /** uint32_t, in: VBOX_SHCL_INFO_FLAG_XXX. */
1039 HGCMFunctionParameter fInfo;
1040} VBoxShClListEntryReqParms;
1041
1042/**
1043 * Request to read a list entry.
1044 */
1045typedef struct _VBoxShClListEntryReadReqMsg
1046{
1047 VBGLIOCHGCMCALL hdr;
1048
1049 VBoxShClListEntryReqParms ReqParms;
1050} VBoxShClListEntryReadReqMsg;
1051
1052#define VBOX_SHCL_CPARMS_LIST_ENTRY_READ 3
1053
1054/**
1055 * Reads / Writes a list entry.
1056 */
1057typedef struct _VBoxShClListEntryMsg
1058{
1059 VBGLIOCHGCMCALL hdr;
1060
1061 /** in/out: Request parameters. */
1062 VBoxShClListEntryReqParms ReqParms;
1063 /** pointer, in/out: Entry name. */
1064 HGCMFunctionParameter szName;
1065 /** uint32_t, out: Bytes to be used for information/How many bytes were used. */
1066 HGCMFunctionParameter cbInfo;
1067 /** pointer, in/out: Information to be set/get (SHCLFSOBJINFO only currently).
1068 * Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well. */
1069 HGCMFunctionParameter pvInfo;
1070} VBoxShClListEntryMsg;
1071
1072#define VBOX_SHCL_CPARMS_LIST_ENTRY 6
1073
1074/**
1075 * Opens a Shared Clipboard object.
1076 */
1077typedef struct _VBoxShClObjOpenMsg
1078{
1079 VBGLIOCHGCMCALL hdr;
1080
1081 /** uint64_t, in/out: Context ID. */
1082 HGCMFunctionParameter uContext;
1083 /** uint64_t, in/out: Object handle. */
1084 HGCMFunctionParameter uHandle;
1085 /** uint32_t, in/out: Size (in bytes) of absoulte path of object to open/create. */
1086 HGCMFunctionParameter cbPath;
1087 /** pointer, in/out: Absoulte path of object to open/create. */
1088 HGCMFunctionParameter szPath;
1089 /** uint32_t in/out: Open / Create flags of type SHCL_OBJ_CF_. */
1090 HGCMFunctionParameter fCreate;
1091} VBoxShClObjOpenMsg;
1092
1093#define VBOX_SHCL_CPARMS_OBJ_OPEN 5
1094
1095/**
1096 * Closes a Shared Clipboard object.
1097 */
1098typedef struct _VBoxShClObjCloseMsg
1099{
1100 VBGLIOCHGCMCALL hdr;
1101
1102 /** uint64_t, in/out: Context ID. */
1103 HGCMFunctionParameter uContext;
1104 /** uint64_t, in: SHCLOBJHANDLE of object to close. */
1105 HGCMFunctionParameter uHandle;
1106} VBoxShClObjCloseMsg;
1107
1108#define VBOX_SHCL_CPARMS_OBJ_CLOSE 2
1109
1110/**
1111 * Structure for keeping read parameters of a Shared Clipboard object.
1112 */
1113typedef struct _VBoxShClObjReadReqParms
1114{
1115 /** uint64_t, in: Context ID. */
1116 HGCMFunctionParameter uContext;
1117 /** uint64_t, in: SHCLOBJHANDLE of object to write to. */
1118 HGCMFunctionParameter uHandle;
1119 /** uint32_t, in: How many bytes to read. */
1120 HGCMFunctionParameter cbToRead;
1121 /** uint32_t, in: Read flags. Currently unused and must be 0. */
1122 HGCMFunctionParameter fRead;
1123} VBoxShClObjReadReqParms;
1124
1125/**
1126 * Reads from a Shared Clipboard object.
1127 */
1128typedef struct _VBoxShClObjReadReqMsg
1129{
1130 VBGLIOCHGCMCALL hdr;
1131
1132 VBoxShClObjReadReqParms ReqParms;
1133} VBoxShClObjReadReqMsg;
1134
1135#define VBOX_SHCL_CPARMS_OBJ_READ_REQ 4
1136
1137/**
1138 * Reads / writes data of / to an object.
1139 *
1140 * Used by:
1141 * VBOX_SHCL_FN_OBJ_READ
1142 * VBOX_SHCL_FN_OBJ_WRITE
1143 */
1144typedef struct _VBoxShClObjReadWriteMsg
1145{
1146 VBGLIOCHGCMCALL hdr;
1147
1148 /** uint64_t, in/out: Context ID. */
1149 HGCMFunctionParameter uContext;
1150 /** uint64_t, in/out: SHCLOBJHANDLE of object to write to. */
1151 HGCMFunctionParameter uHandle;
1152 /** uint32_t, in/out: Size (in bytes) of current data chunk. */
1153 HGCMFunctionParameter cbData;
1154 /** pointer, in/out: Current data chunk. */
1155 HGCMFunctionParameter pvData;
1156 /** uint32_t, in/out: Size (in bytes) of current data chunk checksum. */
1157 HGCMFunctionParameter cbChecksum;
1158 /** pointer, in/out: Checksum of data block, based on the checksum
1159 * type in the data header. Optional. */
1160 HGCMFunctionParameter pvChecksum;
1161} VBoxShClObjReadWriteMsg;
1162
1163#define VBOX_SHCL_CPARMS_OBJ_READ 6
1164#define VBOX_SHCL_CPARMS_OBJ_WRITE 6
1165
1166/**
1167 * Sends an error event.
1168 *
1169 * Used by:
1170 * VBOX_SHCL_FN_WRITE_ERROR
1171 */
1172typedef struct _VBoxShClErrorMsg
1173{
1174 VBGLIOCHGCMCALL hdr;
1175
1176 /** uint64_t, in: Context ID. */
1177 HGCMFunctionParameter uContext;
1178 /** uint32_t, in: The error code (IPRT-style). */
1179 HGCMFunctionParameter rc;
1180} VBoxShClWriteErrorMsg;
1181
1182#define VBOX_SHCL_CPARMS_ERROR 2
1183
1184#pragma pack()
1185
1186/**
1187 * Structure for keeping a Shared Clipboard file data chunk.
1188 *
1189 * @returns VBox status code.
1190 */
1191typedef struct _SHCLFILEDATA
1192{
1193 /** Current file data chunk. */
1194 void *pvData;
1195 /** Size (in bytes) of current data chunk. */
1196 uint32_t cbData;
1197 /** Checksum for current file data chunk. */
1198 void *pvChecksum;
1199 /** Size (in bytes) of current data chunk. */
1200 uint32_t cbChecksum;
1201} SHCLFILEDATA, *PSHCLFILEDATA;
1202
1203/**
1204 * Structure for keeping Shared Clipboard error data.
1205 */
1206typedef struct _SHCLERRORDATA
1207{
1208 int32_t rc;
1209} SHCLERRORDATA, *PSHCLERRORDATA;
1210
1211/** Opaque client structure for API access. */
1212struct _SHCLCLIENT;
1213typedef struct _SHCLCLIENT SHCLCLIENT, *PSHCLCLIENT;
1214
1215/** Opaque client structure for API access. */
1216struct _SHCLCLIENTCMDCTX;
1217typedef struct _SHCLCLIENTCMDCTX SHCLCLIENTCMDCTX, *PSHCLCLIENTCMDCTX;
1218
1219/** @name Public service functions, accessible by the backends.
1220 * Locking is between the (host) service thread and the platform-dependent (window) thread.
1221 * @{
1222 */
1223int ShClSvcDataReadRequest(PSHCLCLIENT pClient, PSHCLDATAREQ pDataReq, PSHCLEVENTID puEvent);
1224int ShClSvcDataReadSignal(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, PSHCLDATABLOCK pData);
1225int ShClSvcFormatsReport(PSHCLCLIENT pClient, PSHCLFORMATDATA pFormats);
1226/** @} */
1227
1228uint32_t ShClSvcGetMode(void);
1229bool ShClSvcGetHeadless(void);
1230bool ShClSvcLock(void);
1231void ShClSvcUnlock(void);
1232
1233#endif /* !VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h */
1234
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