Changeset 47835 in vbox
- Timestamp:
- Aug 19, 2013 9:13:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r47817 r47835 10621 10621 </param> 10622 10622 <param name="openMode" type="wstring" dir="in"> 10623 <desc>The file open mode.</desc> 10623 <desc>The file opening mode. This describes the wanted access to a file, whereas 10624 the parameter must be one of the following: 10625 <ul> 10626 <li><b>r</b>Opens a file for reading.</li> 10627 <li><b>r+</b>Opens a file for reading and writing.</li> 10628 <li><b>w</b>Opens a file for writing.</li> 10629 <li><b>w+</b>Opens a file for writing and reading.</li> 10630 </ul> 10631 </desc> 10624 10632 </param> 10625 10633 <param name="disposition" type="wstring" dir="in"> 10626 <desc>The file disposition.</desc> 10634 <desc>The file disposition. This describes the action to take in case a 10635 file exists or does not exist, whereas the parameter must be one of the 10636 following: 10637 <ul> 10638 <li><b>ca</b>Creates a new file, always. Overwrites an existing file.</li> 10639 <li><b>ce</b>Creates a new file if it does not exist. Fail if exist.</li> 10640 <li><b>oc</b>Opens and existing file or create it if it does not exist.</li> 10641 <li><b>oe</b>Opens an existing file or fail if it does not exist.</li> 10642 <li><b>ot</b>Opens and truncate an existing file or fail if it does not exist.</li> 10643 </ul> 10644 </desc> 10627 10645 </param> 10628 10646 <param name="creationMode" type="unsigned long" dir="in"> 10629 <desc>The file creation mode.</desc> 10647 <desc>The mode to create the file with. Must be a three-digit octal number which 10648 represents the access rights for the file.</desc> 10630 10649 </param> 10631 10650 <param name="file" type="IGuestFile" dir="return"> … … 10650 10669 </param> 10651 10670 <param name="openMode" type="wstring" dir="in"> 10652 <desc>The file open mode.</desc> 10671 <desc>The file opening mode. This describes the wanted access to a file, whereas 10672 the parameter must be one of the following: 10673 <ul> 10674 <li><b>r</b>Opens a file for reading.</li> 10675 <li><b>r+</b>Opens a file for reading and writing.</li> 10676 <li><b>w</b>Opens a file for writing.</li> 10677 <li><b>w+</b>Opens a file for writing and reading.</li> 10678 </ul> 10679 </desc> 10653 10680 </param> 10654 10681 <param name="disposition" type="wstring" dir="in"> 10655 <desc>The file disposition.</desc> 10682 <desc>The file disposition. This describes the action to take in case a 10683 file exists or does not exist, whereas the parameter must be one of the 10684 following: 10685 <ul> 10686 <li><b>ca</b>Creates a new file, always. Overwrites an existing file.</li> 10687 <li><b>ce</b>Creates a new file if it does not exist. Fail if exist.</li> 10688 <li><b>oc</b>Opens and existing file or create it if it does not exist.</li> 10689 <li><b>oe</b>Opens an existing file or fail if it does not exist.</li> 10690 <li><b>ot</b>Opens and truncate an existing file or fail if it does not exist.</li> 10691 </ul> 10692 </desc> 10656 10693 </param> 10657 10694 <param name="sharingMode" type="wstring" dir="in"> 10658 <desc>The file sharing mode on the guest.</desc> 10695 <desc>The file sharing mode on the guest. This parameter 10696 is not implemented yet.</desc> 10659 10697 </param> 10660 10698 <param name="creationMode" type="unsigned long" dir="in"> 10661 <desc>The file creation mode.</desc> 10699 <desc>The mode to create the file with. Must be a three-digit octal number which 10700 represents the access rights for the file.</desc> 10662 10701 </param> 10663 10702 <param name="offset" type="long long" dir="in"> 10664 <desc>The initial read/write offset .</desc>10703 <desc>The initial read/write offset (in bytes).</desc> 10665 10704 </param> 10666 10705 <param name="file" type="IGuestFile" dir="return"> … … 11264 11303 <interface 11265 11304 name="IFile" extends="$unknown" 11266 uuid=" ceb895d7-8b2d-4a39-8f7c-7d2270f341d5"11305 uuid="984a8bb5-ec58-4685-ab5e-7b46112b6b56" 11267 11306 wsmap="managed" 11268 11307 > … … 11275 11314 </desc> 11276 11315 </attribute> 11277 <attribute name="disposition" type=" unsigned long" readonly="yes">11316 <attribute name="disposition" type="wstring" readonly="yes"> 11278 11317 <desc> 11279 11318 The disposition mode. … … 11295 11334 </desc> 11296 11335 </attribute> 11297 <attribute name="openMode" type=" unsigned long" readonly="yes">11336 <attribute name="openMode" type="wstring" readonly="yes"> 11298 11337 <desc> 11299 11338 The open mode.
Note:
See TracChangeset
for help on using the changeset viewer.