Changeset 27949 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Apr 1, 2010 3:51:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r27946 r27949 8499 8499 </desc> 8500 8500 <param name="execName" type="wstring" dir="in"> 8501 <desc>Foobar</desc> 8501 <desc> 8502 Full path name of the command to execute on the guest; the 8503 commands has to exists in the guest VM in order to be executed. 8504 </desc> 8502 8505 </param> 8503 8506 <param name="flags" type="unsigned long" dir="in"> 8504 <desc>Foobar</desc> 8507 <desc> 8508 Execution flags - currently not supported and therefore 8509 has to be set to 0. 8510 </desc> 8505 8511 </param> 8506 8512 <param name="arguments" type="wstring" dir="in"> 8507 <desc>Foobar</desc> 8513 <desc> 8514 Arguments passed to the execution command. If more than one argument 8515 should be passed, put them in a quoted string, e.g. "--foo --bar". 8516 </desc> 8508 8517 </param> 8509 8518 <param name="environment" type="wstring" safearray="yes" dir="in"> 8510 <desc>Foobar</desc> 8519 <desc> 8520 Environment variables that can be set while the command is being 8521 executed, in form of "NAME=VALUE". If more than one environment 8522 variable should be passed, put them in a quoted string, e.g. "FOO=BAR 8523 VBOX_LOG=ALL". 8524 </desc> 8511 8525 </param> 8512 8526 <param name="stdIn" type="wstring" dir="in"> 8513 <desc>Foobar</desc> 8527 <desc> 8528 What to do with the standard input (stdin) of the command being 8529 executed. Currently not used and has to be set to an empty value. 8530 </desc> 8514 8531 </param> 8515 8532 <param name="stdOut" type="wstring" dir="in"> 8516 <desc>Foobar</desc> 8533 <desc> 8534 What to do with the standard output (stdout) of the command being 8535 executed. Currently not used and has to be set to an empty value. 8536 </desc> 8517 8537 </param> 8518 8538 <param name="stdErr" type="wstring" dir="in"> 8519 <desc>Foobar</desc> 8539 <desc> 8540 What to do with the standard error (stderr) of the command being 8541 executed. Currently not used and has to be set to an empty value. 8542 </desc> 8520 8543 </param> 8521 8544 <param name="userName" type="wstring" dir="in"> 8522 <desc>Foobar</desc> 8545 <desc> 8546 User name under which the command will be executed; has to exist 8547 and have the appropriate rights to execute programs in the VM. 8548 </desc> 8523 8549 </param> 8524 8550 <param name="password" type="wstring" dir="in"> 8525 <desc>Foobar</desc> 8551 <desc> 8552 Password of the user account specified. 8553 </desc> 8526 8554 </param> 8527 8555 <param name="timeoutMS" type="unsigned long" dir="in"> 8528 <desc>Foobar</desc> 8556 <desc> 8557 The maximum timeout value (in msec) to wait for finished program 8558 execution. Pass 0 for an infinite timeout. 8559 </desc> 8529 8560 </param> 8530 8561 <param name="pid" type="unsigned long" dir="out"> 8531 <desc>Foobar</desc> 8532 </param> 8562 <desc> 8563 The PID (process ID) of the started command for later reference. 8564 </desc> 8565 </param> 8533 8566 <param name="progress" type="IProgress" dir="return"> 8534 8567 <desc>Progress object to track the operation completion.</desc>
Note:
See TracChangeset
for help on using the changeset viewer.