Changeset 83624 in vbox for trunk/include/VBox
- Timestamp:
- Apr 8, 2020 4:29:25 PM (5 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-win.h
r82968 r83624 135 135 136 136 SHCLFORMAT SharedClipboardWinClipboardFormatToVBox(UINT uFormat); 137 int SharedClipboardWinGetFormats(PSHCLWINCTX pCtx, PSHCLFORMAT DATA pFormats);137 int SharedClipboardWinGetFormats(PSHCLWINCTX pCtx, PSHCLFORMATS pfFormats); 138 138 139 139 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS -
trunk/include/VBox/GuestHost/SharedClipboard.h
r82880 r83624 76 76 /** Pointer to a shared clipboard data request. */ 77 77 typedef SHCLDATAREQ *PSHCLDATAREQ; 78 79 /**80 * Shared Clipboard formats specification.81 * @todo r=bird: Pointless as we don't have any fFlags defined, so, unless82 * someone can give me a plausible scenario where we will need flags here,83 * this structure will be eliminated.84 */85 typedef struct SHCLFORMATDATA86 {87 /** Available format(s) as bit map. */88 SHCLFORMATS Formats;89 /** Formats flags. Currently unused. */90 uint32_t fFlags;91 } SHCLFORMATDATA;92 /** Pointer to a shared clipboard formats specification. */93 typedef SHCLFORMATDATA *PSHCLFORMATDATA;94 78 95 79 /** -
trunk/include/VBox/VBoxGuestLib.h
r83142 r83624 656 656 { 657 657 /** Reports available formats from the host. */ 658 SHCLFORMAT DATAReportedFormats;658 SHCLFORMATS fReportedFormats; 659 659 /** Reports that data needs to be read from the guest. */ 660 660 SHCLFORMAT fReadData;
Note:
See TracChangeset
for help on using the changeset viewer.