Changeset 80969 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Sep 24, 2019 11:42:59 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133557
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r80918 r80969 274 274 VBGLIOCHGCMCALL hdr; 275 275 276 /** uint32_t, in: Context ID. */ 277 HGCMFunctionParameter uContext; 278 /** uint32_t, out: VBOX_SHCL_FMT_*. */ 279 HGCMFunctionParameter uFormats; 280 /** uint32_t, in: Format flags. */ 281 HGCMFunctionParameter fFlags; 276 union 277 { 278 struct 279 { 280 /** uint32_t, out: VBOX_SHCL_FMT_*. */ 281 HGCMFunctionParameter uFormats; 282 } v0; 283 284 struct 285 { 286 /** uint32_t, in: Context ID. */ 287 HGCMFunctionParameter uContext; 288 /** uint32_t, out: VBOX_SHCL_FMT_*. */ 289 HGCMFunctionParameter uFormats; 290 /** uint32_t, in: Format flags. */ 291 HGCMFunctionParameter fFlags; 292 } v1; 293 } u; 282 294 } VBoxShClFormatsMsg; 283 295
Note:
See TracChangeset
for help on using the changeset viewer.