Changeset 78151 in vbox for trunk/include/VBox
- Timestamp:
- Apr 17, 2019 12:03:42 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130066
- Location:
- trunk/include/VBox
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard.h
r76585 r78151 33 33 #include <iprt/types.h> 34 34 35 /** 36 * Supported data formats for Shared Clipboard. Bit mask. 37 */ 38 /** Shared Clipboard format is an Unicode text. */ 39 #define VBOX_SHARED_CLIPBOARD_FMT_UNICODETEXT UINT32_C(0x01) 40 /** Shared Clipboard format is bitmap (BMP / DIB). */ 41 #define VBOX_SHARED_CLIPBOARD_FMT_BITMAP UINT32_C(0x02) 42 /** Shared Clipboard format is HTML. */ 43 #define VBOX_SHARED_CLIPBOARD_FMT_HTML UINT32_C(0x04) 44 45 /** 46 * The host messages for the guest. 47 */ 48 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_QUIT 1 49 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA 2 50 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS 3 51 35 52 enum 36 53 { … … 46 63 struct _VBOXCLIPBOARDCONTEXT; 47 64 typedef struct _VBOXCLIPBOARDCONTEXT VBOXCLIPBOARDCONTEXT; 65 typedef struct _VBOXCLIPBOARDCONTEXT *PVBOXCLIPBOARDCONTEXT; 48 66 49 67 /** Opaque data structure for the X11/VBox backend code. */ -
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r76585 r78151 43 43 44 44 /* 45 * Supported data formats. Bit mask.46 */47 #define VBOX_SHARED_CLIPBOARD_FMT_UNICODETEXT UINT32_C(0x01)48 #define VBOX_SHARED_CLIPBOARD_FMT_BITMAP UINT32_C(0x02)49 #define VBOX_SHARED_CLIPBOARD_FMT_HTML UINT32_C(0x04)50 51 /*52 45 * The service functions which are callable by host. 53 46 */ … … 67 60 /* Send data in requested format to host. */ 68 61 #define VBOX_SHARED_CLIPBOARD_FN_WRITE_DATA 4 69 70 /*71 * The host messages for the guest.72 */73 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_QUIT 174 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA 275 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS 376 62 77 63 /*
Note:
See TracChangeset
for help on using the changeset viewer.