Changeset 82480 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Dec 7, 2019 12:32:57 AM (5 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedClipboard
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp
r81843 r82480 35 35 *********************************************************************************************************************************/ 36 36 /** Global clipboard context information */ 37 struct _SHCLCONTEXT37 struct SHCLCONTEXT 38 38 { 39 39 /** We have a separate thread to poll for new clipboard content */ -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r82462 r82480 55 55 static int vboxClipboardSvcWinSyncInternal(PSHCLCONTEXT pCtx); 56 56 57 struct _SHCLCONTEXT57 struct SHCLCONTEXT 58 58 { 59 59 /** Handle for window message handling thread. */ -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r82266 r82480 39 39 * Structures and Typedefs * 40 40 *********************************************************************************************************************************/ 41 42 41 /** 43 42 * Global context information used by the host glue for the X11 clipboard backend. 44 43 */ 45 struct _SHCLCONTEXT44 struct SHCLCONTEXT 46 45 { 47 46 /** This mutex is grabbed during any critical operations on the clipboard … … 164 163 165 164 /** Structure describing a request for clipoard data from the guest. */ 166 struct _CLIPREADCBREQ165 struct CLIPREADCBREQ 167 166 { 168 167 /** User-supplied data pointer, based on the request type. */
Note:
See TracChangeset
for help on using the changeset viewer.