- Timestamp:
- Jan 11, 2024 12:07:34 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r102833 r102835 110 110 /** 111 111 * Structure for low level HGCM host callback from 112 * the guest. No deep copy. */ 112 * the guest. No deep copy. 113 */ 113 114 typedef struct VBOXGUESTCTRLHOSTCALLBACK 114 115 { … … 210 211 /** 211 212 * Removes a file on the guest. 213 * 214 * @since 7.1 212 215 */ 213 216 HOST_MSG_FILE_REMOVE = 273, 214 217 /** 215 218 * Opens (creates) a directory on the guest. 219 * 220 * @since 7.1 216 221 */ 217 222 HOST_MSG_DIR_OPEN = 310, 218 223 /** 219 224 * Closes a directory on the guest. 225 * 226 * @since 7.1 220 227 */ 221 228 HOST_MSG_DIR_CLOSE = 311, 222 229 /** 223 230 * Reads the next directory entry on the guest. 231 * 232 * @since 7.1 224 233 */ 225 234 HOST_MSG_DIR_READ = 312, 226 235 /** 227 236 * Rewinds and restarts the directory reading on the guest. 237 * 238 * @since 7.1 228 239 */ 229 240 HOST_MSG_DIR_REWIND = 313, 230 241 /** 231 242 * Creates a directory on the guest. 243 * 244 * @since 7.1 232 245 */ 233 246 HOST_MSG_DIR_CREATE = 314, … … 235 248 * Lists one or multiple directory entries at once. 236 249 * 237 * @since 250 * @since 7.1 238 251 */ 239 252 HOST_MSG_DIR_LIST = 315, … … 262 275 /** 263 276 * Retrieves information about a file system object. 277 * 278 * @since 7.1 264 279 */ 265 280 HOST_MSG_FS_OBJ_QUERY_INFO = 334, 266 281 /** 267 282 * Creates a temporary file or directory. 283 * 284 * @since 7.1 268 285 */ 269 286 HOST_MSG_FS_CREATE_TEMP = 335, 270 287 /** 271 288 * Retrieves information about a guest file system. 289 * 290 * @since 7.1 272 291 */ 273 292 HOST_MSG_FS_QUERY_INFO = 336, … … 276 295 * Retrieves the currently accessible mount points from the guest. 277 296 * 278 * @since 297 * @since 7.1 279 298 */ 280 299 HOST_MSG_MOUNT_POINTS = 337, … … 1156 1175 #endif /* VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS */ 1157 1176 1177 /** 1178 * Renames a path on the guest. 1179 */ 1158 1180 typedef struct HGCMMsgPathRename 1159 1181 { … … 1169 1191 } HGCMMsgPathRename; 1170 1192 1193 /** 1194 * Retrieves the user's personal documents directory from the guest. 1195 */ 1171 1196 typedef struct HGCMMsgPathUserDocuments 1172 1197 { … … 1176 1201 } HGCMMsgPathUserDocuments; 1177 1202 1203 /** 1204 * Retrieves the user's home directory from the guest. 1205 */ 1178 1206 typedef struct HGCMMsgPathUserHome 1179 1207 { … … 1543 1571 ******************************************************************************/ 1544 1572 1573 /** 1574 * Reply from a guest file operation. 1575 */ 1545 1576 typedef struct HGCMReplyFileNotify 1546 1577 { … … 1599 1630 } HGCMReplyFileNotify; 1600 1631 1632 /** 1633 * Reply from a guest directory operation. 1634 */ 1601 1635 typedef struct HGCMReplyDirNotify 1602 1636 {
Note:
See TracChangeset
for help on using the changeset viewer.