Changeset 42461 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Jul 30, 2012 9:28:12 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79600
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r42160 r42461 44 44 /** 45 45 * Process status when executed in the guest. 46 * Note: Has to match Main's ExecuteProcessStatus_*!47 46 */ 48 47 enum eProcessStatus … … 250 249 * new data on stdout/stderr, process terminated etc. 251 250 */ 252 HOST_EXEC_GET_OUTPUT = 102 251 HOST_EXEC_GET_OUTPUT = 102, 252 253 /* 254 * Guest control 2.0 commands start in the 2xx number space. 255 */ 256 257 /** 258 * Waits for a certain event to happen. This can be an input, output 259 * or status event. 260 */ 261 HOST_EXEC_WAIT_FOR = 210 253 262 }; 254 263 … … 278 287 /* 279 288 * Process execution. 289 * The 1xx commands are legacy guest control commands and 290 * will be replaced by newer commands in the future. 280 291 */ 281 292 … … 291 302 * Guests sends an input status notification to the host. 292 303 */ 293 GUEST_EXEC_SEND_INPUT_STATUS = 102 304 GUEST_EXEC_SEND_INPUT_STATUS = 102, 305 306 /* 307 * Guest control 2.0 commands start in the 2xx number space. 308 */ 309 310 /** 311 * Guest notifies the host about some I/O event. This can be 312 * a stdout, stderr or a stdin event. The actual event only tells 313 * how many data is available / can be sent without actually 314 * transmitting the data. 315 */ 316 GUEST_EXEC_IO_NOTIFY = 210, 294 317 }; 295 318 … … 332 355 /** The command to execute on the guest. */ 333 356 HGCMFunctionParameter cmd; 334 /** Execution flags (see IGuest:: ExecuteProcessFlag_*). */357 /** Execution flags (see IGuest::ProcessCreateFlag_*). */ 335 358 HGCMFunctionParameter flags; 336 359 /** Number of arguments. */ … … 351 374 * overall lifetime of the process or how long it 352 375 * can take to bring the process up and running - 353 * (depends on the IGuest:: ExecuteProcessFlag_*). */376 * (depends on the IGuest::ProcessCreateFlag_*). */ 354 377 HGCMFunctionParameter timeout; 355 378 … … 434 457 } VBoxGuestCtrlHGCMMsgExecStatusIn; 435 458 459 /** 460 * Reports back the currente I/O status of a guest process. 461 */ 462 typedef struct VBoxGuestCtrlHGCMMsgExecIONotify 463 { 464 VBoxGuestHGCMCallInfo hdr; 465 /** Context ID. */ 466 HGCMFunctionParameter context; 467 /** Data written. */ 468 HGCMFunctionParameter written; 469 470 } VBoxGuestCtrlHGCMMsgExecIONotify; 471 436 472 #pragma pack () 437 473
Note:
See TracChangeset
for help on using the changeset viewer.