Changeset 99120 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Mar 22, 2023 5:30:14 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r99088 r99120 814 814 * The toolbox commands now are being marked as deprecated. 815 815 * @since 7.1 */ 816 # define VBOX_GUESTCTRL_GF_0_TOOLBOX_AS_CMDS RT_BIT_64(4) 816 #define VBOX_GUESTCTRL_GF_0_TOOLBOX_AS_CMDS RT_BIT_64(4) 817 /** Supports specifying the working directory for run / start. */ 818 #define VBOX_GUESTCTRL_GF_0_PROCESS_CWD RT_BIT_64(5) 817 819 /** Bit that must be set in the 2nd parameter, will be cleared if the host reponds 818 820 * correctly (old hosts might not). */ … … 830 832 * @since 6.1.6 */ 831 833 #define VBOX_GUESTCTRL_HF_0_PROCESS_ARGV0 RT_BIT_64(1) 834 /** Host sends the working directory for run / start, if guest 835 * reports VBOX_GUESTCTRL_GF_0_PROCESS_CWD. 836 * @since 6.1.20 ?? */ 837 #define VBOX_GUESTCTRL_HF_0_PROCESS_CWD RT_BIT_64(2) 832 838 /** @} */ 833 839 … … 1210 1216 /** Pointer to process affinity blocks (uint64_t). */ 1211 1217 HGCMFunctionParameter affinity; 1218 /** Working directory request, filled if guest 1219 * reports VBOX_GUESTCTRL_GF_0_PROCESS_CWD. */ 1220 HGCMFunctionParameter cwd; 1212 1221 } v2; 1213 1222 } u;
Note:
See TracChangeset
for help on using the changeset viewer.