Changeset 19875 in vbox for trunk/include/VBox
- Timestamp:
- May 20, 2009 9:18:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard.h
r19842 r19875 52 52 typedef struct _CLIPBACKEND CLIPBACKEND; 53 53 54 /** Opaque data structure used for asynchronously completing requests by VBox55 * to read the X11 clipboard data. */56 struct _CLIPREADX11CBCONTEXT;57 typedef struct _CLIPREADX11CBCONTEXT CLIPREADX11CBCONTEXT;58 59 54 /* APIs exported by the X11 backend */ 60 55 extern CLIPBACKEND *ClipConstructX11(VBOXCLIPBOARDCONTEXT *pFrontend); … … 65 60 uint32_t u32Formats); 66 61 extern int ClipRequestDataFromX11(CLIPBACKEND *pBackend, uint32_t u32Format, 67 void *pv, uint32_t cb, 68 CLIPREADX11CBCONTEXT *pCtx); 62 void *pv, uint32_t cb); 69 63 70 64 /* APIs exported by the X11/VBox frontend */ … … 74 68 extern void ClipReportX11Formats(VBOXCLIPBOARDCONTEXT *pCtx, 75 69 uint32_t u32Formats); 76 extern void ClipCompleteDataRequestFromX11( CLIPREADX11CBCONTEXT *pCtx, int rc,70 extern void ClipCompleteDataRequestFromX11(VBOXCLIPBOARDCONTEXT *pCtx, int rc, 77 71 uint32_t cbActual); 78 72 #endif /* ___GUESTHOST_VBOXCLIPBOARD__H */
Note:
See TracChangeset
for help on using the changeset viewer.