Changeset 103165 in vbox for trunk/include
- Timestamp:
- Feb 1, 2024 4:17:38 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h ¶
r102956 r103165 867 867 /** Host supports process passing arguments starting at argv[0] rather than 868 868 * argv[1], when the guest additions reports VBOX_GUESTCTRL_GF_0_PROCESS_ARGV0. 869 * @since 6.1.6 869 * @since 6.1.6 */ 870 870 #define VBOX_GUESTCTRL_HF_0_PROCESS_ARGV0 RT_BIT_64(1) 871 871 /** Host sends the working directory for run / start, if guest 872 872 * reports VBOX_GUESTCTRL_GF_0_PROCESS_CWD. 873 * @since 6.1.20 ??*/873 * @since 7.1 */ 874 874 #define VBOX_GUESTCTRL_HF_0_PROCESS_CWD RT_BIT_64(2) 875 875 /** @} */ … … 1290 1290 /** Pointer to process affinity blocks (uint64_t). */ 1291 1291 HGCMFunctionParameter affinity; 1292 /** Working directory request, filled if guest1293 * reports VBOX_GUESTCTRL_GF_0_PROCESS_CWD. */1294 HGCMFunctionParameter cwd;1295 1292 } v2; 1296 1293 } u; 1294 /** Working directory request, filled if guest 1295 * reports VBOX_GUESTCTRL_GF_0_PROCESS_CWD. 1296 * @since 7.1 */ 1297 HGCMFunctionParameter cwd; 1297 1298 } HGCMMsgProcExec; 1298 1299
Note:
See TracChangeset
for help on using the changeset viewer.