Changeset 82487 in vbox for trunk/include
- Timestamp:
- Dec 7, 2019 3:37:03 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r81768 r82487 588 588 589 589 /** 590 * Structure containing the context required for 591 * either retrieving or sending a HGCM shared clipboard 590 * The context required for either retrieving or sending a HGCM shared clipboard 592 591 * commands from or to the host. 593 *594 * Note: Do not change parameter order without also595 * adapting all structure initializers.596 592 */ 597 593 typedef struct VBGLR3SHCLCMDCTX … … 601 597 * Use a union for the HGCM stuff then. */ 602 598 599 /** IN/OUT: Context ID to retrieve or to use. */ 600 uint64_t uContextID; 603 601 /** IN: HGCM client ID to use for communication. */ 604 602 uint32_t uClientID; 605 /** IN/OUT: Context ID to retrieve or to use. */606 uint64_t uContextID;607 603 /** IN: Maximum chunk size (in bytes). */ 608 604 uint32_t cbChunkSize; 605 /** IN: Host feature flags (of type VBOX_SHCL_HF_XXX). */ 606 uint64_t fHostFeatures; 609 607 /** Flag indicating whether to use the legacy protocol (<= VBox 6.1) or not. 610 608 * This is determined in VbglR3ClipboardConnectEx(). */ 611 609 bool fUseLegacyProtocol; 612 /** IN: Host feature flags (of type VBOX_SHCL_HF_XXX). */ 613 uint64_t fHostFeatures; 614 /** OUT: Number of parameters retrieved. */ 610 /** OUT: Number of parameters retrieved. 611 * @todo r=bird: s/uNumParms/cParms/ !! */ 615 612 uint32_t uNumParms; 616 613 # ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
Note:
See TracChangeset
for help on using the changeset viewer.