Changeset 36887 in vbox for trunk/include
- Timestamp:
- Apr 29, 2011 10:04:52 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r36099 r36887 75 75 #define INPUT_FLAG_NONE 0 76 76 #define INPUT_FLAG_EOF RT_BIT(0) 77 78 /** 79 * Pipe handle IDs used internally for referencing to 80 * a certain pipe buffer. 81 */ 82 #define OUTPUT_HANDLE_ID_STDOUT 1 83 #define OUTPUT_HANDLE_ID_STDERR 2 77 84 78 85 /** @name Internal tools built into VBoxService which are used in order to … … 335 342 } VBoxGuestCtrlHGCMMsgExecIn; 336 343 344 /** 345 * Retrieves ouptut from a previously executed process 346 * from stdout/stderr. 347 */ 337 348 typedef struct VBoxGuestCtrlHGCMMsgExecOut 338 349 { … … 351 362 } VBoxGuestCtrlHGCMMsgExecOut; 352 363 364 /** 365 * Reports the current status of a (just) started 366 * or terminated process. 367 */ 353 368 typedef struct VBoxGuestCtrlHGCMMsgExecStatus 354 369 { … … 367 382 } VBoxGuestCtrlHGCMMsgExecStatus; 368 383 384 /** 385 * Reports back the status of data written to a process. 386 */ 369 387 typedef struct VBoxGuestCtrlHGCMMsgExecStatusIn 370 388 { … … 392 410 uint32_t uMsg; 393 411 uint32_t uParmCount; 394 VBOXHGCMSVCPARM *pParms;412 PVBOXHGCMSVCPARM pParms; 395 413 } VBOXGUESTCTRPARAMBUFFER; 396 414 typedef VBOXGUESTCTRPARAMBUFFER *PVBOXGUESTCTRPARAMBUFFER;
Note:
See TracChangeset
for help on using the changeset viewer.