Changeset 83408 in vbox for trunk/include
- Timestamp:
- Mar 25, 2020 1:12:09 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136625
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r83405 r83408 690 690 /** Supports HOST_MSG_FILE_SET_SIZE. */ 691 691 #define VBOX_GUESTCTRL_GF_0_SET_SIZE RT_BIT_64(0) 692 /** Supports (fixes) treating argv[0] separately from the actual execution command. 693 * Without this flag the actual execution command is taken as argv[0]. */ 692 /** Supports passing process arguments starting at argv[0] rather than argv[1]. 693 * Guest additions which doesn't support this feature will instead use the 694 * executable image path as argv[0]. 695 * @sa VBOX_GUESTCTRL_HF_0_PROCESS_ARGV0 696 * @since 6.1.6 */ 694 697 #define VBOX_GUESTCTRL_GF_0_PROCESS_ARGV0 RT_BIT_64(1) 695 698 /** Bit that must be set in the 2nd parameter, will be cleared if the host reponds … … 704 707 * GUEST_FILE_NOTIFYTYPE_WRITE_OFFSET notification types. */ 705 708 #define VBOX_GUESTCTRL_HF_0_NOTIFY_RDWR_OFFSET RT_BIT_64(0) 706 /** Host supports sending (treating) argv[0] separately from the actual execution command.707 * Needed when newer Guest Additions which support VBOX_GUESTCTRL_GF_0_PROCESS_ARGV0 run on an older708 * host which doesn't in turn support VBOX_GUESTCTRL_HF_0_PROCESS_ARGV0.*/709 /** Host supports process passing arguments starting at argv[0] rather than 710 * argv[1], when the guest additions reports VBOX_GUESTCTRL_GF_0_PROCESS_ARGV0. 711 * @since 6.1.6 */ 709 712 #define VBOX_GUESTCTRL_HF_0_PROCESS_ARGV0 RT_BIT_64(1) 710 713 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.