Changeset 75824 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Nov 29, 2018 10:12:53 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r75801 r75824 153 153 * Gets the current status of a running process, e.g. 154 154 * new data on stdout/stderr, process terminated etc. 155 * * Note:Legacy (VBox < 4.3) command.155 * @note Legacy (VBox < 4.3) command. 156 156 */ 157 157 HOST_EXEC_GET_OUTPUT = 102, … … 371 371 /** Skip message. 372 372 * 373 * This skips the current message, replying to the sender with 374 * VERR_NOT_SUPPORTED if appropriate. No parameters. 373 * This skips the current message, replying to the main backend as best it can. 374 * Takes between zero and two parameters. The first parameter is the 32-bit 375 * VBox status code to pass onto Main when skipping the command, defaults to 376 * VERR_NOT_SUPPORTED. The second parameter is the 32-bit message ID of the 377 * command to skip, by default whatever is first in the queue is removed. This 378 * is also the case if UINT32_MAX is specified. 375 379 * 376 380 * @retval VINF_SUCCESS on success. 377 381 * @retval VERR_NOT_FOUND if no message pending. 382 * @retval VERR_MISMATCH if the specified message ID didn't match. 378 383 * @retval VERR_INVALID_CLIENT_ID 379 384 * @retval VERR_WRONG_PARAMETER_COUNT … … 615 620 616 621 /** 617 * Guest file seeking types. Has to 618 * match FileSeekType in Main. 622 * Guest file seeking types. Has to match FileSeekType in Main. 623 * 624 * @note This is not compatible with RTFileSeek, which is an unncessary pain. 619 625 */ 620 626 enum GUEST_FILE_SEEKTYPE
Note:
See TracChangeset
for help on using the changeset viewer.