Changeset 100612 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Jul 17, 2023 5:45:04 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardExt.h
r98103 r100612 53 53 typedef FNVRDPCLIPBOARDEXTCALLBACK *PFNVRDPCLIPBOARDEXTCALLBACK; 54 54 55 /** 56 * Structure for holding Shared Clipboard service extension parameters. 57 */ 55 58 typedef struct _SHCLEXTPARMS 56 59 { 57 uint32_t uFormat;58 60 union 59 61 { 60 void *pvData; 61 PFNVRDPCLIPBOARDEXTCALLBACK pfnCallback; 62 /** Reports clipboard formats. */ 63 struct 64 { 65 SHCLFORMATS uFormats; 66 } ReportFormats; 67 /** Reads / writes clipboard data. */ 68 struct 69 { 70 SHCLFORMAT uFormat; 71 void *pvData; 72 uint32_t cbData; 73 } ReadWriteData; 74 /** Sets a read / write callback. */ 75 struct 76 { 77 PFNVRDPCLIPBOARDEXTCALLBACK 78 pfnCallback; 79 } SetCallback; 62 80 } u; 63 uint32_t cbData;64 81 } SHCLEXTPARMS; 82 /** Pointer to Shared Clipboard service extension parameters. */ 83 typedef SHCLEXTPARMS *PSHCLEXTPARMS; 65 84 66 85 #endif /* !VBOX_INCLUDED_HostServices_VBoxClipboardExt_h */
Note:
See TracChangeset
for help on using the changeset viewer.