Changeset 80662 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Sep 9, 2019 8:43:14 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r80623 r80662 44 44 * Global clipboard context information. 45 45 */ 46 struct _ VBOXCLIPBOARDCONTEXT46 struct _SHCLCONTEXT 47 47 { 48 48 /** Client ID for the clipboard subsystem */ … … 54 54 55 55 /** Only one client is supported. There seems to be no need for more clients. */ 56 static VBOXCLIPBOARDCONTEXT g_ctx;56 static SHCLCONTEXT g_ctx; 57 57 58 58 … … 86 86 * returned 87 87 */ 88 int ClipRequestDataForX11( VBOXCLIPBOARDCONTEXT *pCtx, uint32_t u32Format, void **ppv, uint32_t *pcb)88 int ClipRequestDataForX11(SHCLCONTEXT *pCtx, uint32_t u32Format, void **ppv, uint32_t *pcb) 89 89 { 90 90 RT_NOREF1(pCtx); … … 148 148 * @param u32Formats The formats to report. 149 149 */ 150 void ClipReportX11Formats( VBOXCLIPBOARDCONTEXT *pCtx, uint32_t u32Formats)150 void ClipReportX11Formats(SHCLCONTEXT *pCtx, uint32_t u32Formats) 151 151 { 152 152 RT_NOREF1(pCtx); … … 166 166 * @param cb the size of the data in @a pv 167 167 */ 168 void ClipRequestFromX11CompleteCallback( VBOXCLIPBOARDCONTEXT *pCtx, int rc, CLIPREADCBREQ *pReq, void *pv, uint32_t cb)168 void ClipRequestFromX11CompleteCallback(SHCLCONTEXT *pCtx, int rc, CLIPREADCBREQ *pReq, void *pv, uint32_t cb) 169 169 { 170 170 RT_NOREF1(pCtx);
Note:
See TracChangeset
for help on using the changeset viewer.