Changeset 100016 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- May 30, 2023 3:56:01 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r99968 r100016 164 164 165 165 /** Sends a transfer status to the guest side. 166 * @since 6.1.?166 * @since 7.1 167 167 */ 168 168 #define VBOX_SHCL_HOST_MSG_TRANSFER_STATUS 50 169 169 /** Reads the root list header from the guest. 170 * @since 6.1.?170 * @since 7.1 171 171 */ 172 172 #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_READ 51 173 173 /** Writes the root list header to the guest. 174 * @since 6.1.?174 * @since 7.1 175 175 */ 176 176 #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_WRITE 52 177 177 /** Reads a root list entry from the guest. 178 * @since 6.1.?178 * @since 7.1 179 179 */ 180 180 #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_READ 53 181 181 /** Writes a root list entry to the guest. 182 * @since 6.1.?182 * @since 7.1 183 183 */ 184 184 #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_WRITE 54 185 185 /** Open a transfer list on the guest side. 186 * @since 6.1.?186 * @since 7.1 187 187 */ 188 188 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_OPEN 55 189 189 /** Closes a formerly opened transfer list on the guest side. 190 * @since 6.1.?190 * @since 7.1 191 191 */ 192 192 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_CLOSE 56 193 193 /** Reads a list header from the guest. 194 * @since 6.1.?194 * @since 7.1 195 195 */ 196 196 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_READ 57 197 197 /** Writes a list header to the guest. 198 * @since 6.1.?198 * @since 7.1 199 199 */ 200 200 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_WRITE 58 201 201 /** Reads a list entry from the guest. 202 * @since 6.1.?202 * @since 7.1 203 203 */ 204 204 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_READ 59 205 205 /** Writes a list entry to the guest. 206 * @since 6.1.?206 * @since 7.1 207 207 */ 208 208 #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_WRITE 60 209 209 /** Open a transfer object on the guest side. 210 * @since 6.1.?210 * @since 7.1 211 211 */ 212 212 #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_OPEN 61 213 213 /** Closes a formerly opened transfer object on the guest side. 214 * @since 6.1.?214 * @since 7.1 215 215 */ 216 216 #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_CLOSE 62 217 217 /** Reads from an object on the guest side. 218 * @since 6.1.?218 * @since 7.1 219 219 */ 220 220 #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_READ 63 221 221 /** Writes to an object on the guest side. 222 * @since 6.1.?222 * @since 7.1 223 223 */ 224 224 #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_WRITE 64 225 225 /** Indicates that the host has canceled a transfer. 226 * @since 6.1.?226 * @since 7.1 227 227 */ 228 228 #define VBOX_SHCL_HOST_MSG_TRANSFER_CANCEL 65 229 229 /** Indicates that the an unrecoverable error on the host occurred. 230 * @since 6.1.?230 * @since 7.1 231 231 */ 232 232 #define VBOX_SHCL_HOST_MSG_TRANSFER_ERROR 66 … … 638 638 /** The host can copy & paste files and directories. 639 639 * This includes messages like 640 * @since 6.1.?*/640 * @since 7.1 */ 641 641 #define VBOX_SHCL_HF_0_TRANSFERS RT_BIT_64(1) 642 642 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.