Changeset 81286 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Oct 15, 2019 4:37:37 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133981
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r81025 r81286 83 83 84 84 /* 85 * The Shared Clipboard file transfer mode (bit field). 86 */ 87 /** Shared Clipboard file transfers are disabled. */ 88 #define VBOX_SHCL_TRANSFER_MODE_DISABLED UINT32_C(0) 89 /** Shared Clipboard file transfers are enabled. */ 90 #define VBOX_SHCL_TRANSFER_MODE_ENABLED RT_BIT(0) 91 /** Shared Clipboard file transfer mode valid mask. */ 92 #define VBOX_SHCL_TRANSFER_MODE_VALID_MASK UINT32_C(0x1) 93 94 /* 85 95 * The service functions which are callable by host. 86 96 */ 87 97 /** Sets the current Shared Clipboard operation mode. */ 88 98 #define VBOX_SHCL_HOST_FN_SET_MODE 1 99 /** Sets the current Shared Clipboard (file) transfers mode. 100 * Operates on the VBOX_SHCL_TRANSFERS_ defines. */ 101 #define VBOX_SHCL_HOST_FN_SET_TRANSFER_MODE 2 89 102 /** Run headless on the host, i.e. do not touch the host clipboard. */ 90 #define VBOX_SHCL_HOST_FN_SET_HEADLESS 2103 #define VBOX_SHCL_HOST_FN_SET_HEADLESS 3 91 104 /** Reports cancellation of the current operation to the guest. */ 92 #define VBOX_SHCL_HOST_FN_CANCEL 3105 #define VBOX_SHCL_HOST_FN_CANCEL 4 93 106 /** Reports an error to the guest. */ 94 #define VBOX_SHCL_HOST_FN_ERROR 4107 #define VBOX_SHCL_HOST_FN_ERROR 5 95 108 /** Reports that a new clipboard area has been registered. */ 96 #define VBOX_SHCL_HOST_FN_AREA_REGISTER 5109 #define VBOX_SHCL_HOST_FN_AREA_REGISTER 6 97 110 /** Reports that a clipboard area has been unregistered. */ 98 #define VBOX_SHCL_HOST_FN_AREA_UNREGISTER 6111 #define VBOX_SHCL_HOST_FN_AREA_UNREGISTER 7 99 112 /** Reports that a client (host / guest) has attached to a clipboard area. */ 100 #define VBOX_SHCL_HOST_FN_AREA_ATTACH 7113 #define VBOX_SHCL_HOST_FN_AREA_ATTACH 8 101 114 /** Reports that a client (host / guest) has detached from a clipboard area. */ 102 #define VBOX_SHCL_HOST_FN_AREA_DETACH 8115 #define VBOX_SHCL_HOST_FN_AREA_DETACH 9 103 116 104 117 /**
Note:
See TracChangeset
for help on using the changeset viewer.