Changeset 79301 in vbox
- Timestamp:
- Jun 24, 2019 10:38:53 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r79300 r79301 14229 14229 Reads data from this file. 14230 14230 14231 <result name="E_NOTIMPL"> 14232 The method is not implemented yet. 14233 </result> 14231 The file current position (<link to="IFile::offset"/>) is updated on success. 14234 14232 </desc> 14235 14233 <param name="toRead" type="unsigned long" dir="in"> … … 14251 14249 Reads data from an offset of this file. 14252 14250 14253 <result name="E_NOTIMPL"> 14254 The method is not implemented yet. 14255 </result> 14251 The file current position (<link to="IFile::offset"/>) is updated on success. 14256 14252 </desc> 14257 14253 <param name="offset" type="long long" dir="in"> … … 14316 14312 <desc> 14317 14313 Changes the file size. 14318 14319 <result name="E_NOTIMPL">14320 The method is not implemented yet.14321 </result>14322 14314 </desc> 14323 14315 <param name="size" type="long long" dir="in"> … … 14329 14321 <desc> 14330 14322 Writes bytes to this file. 14323 14324 The file current position (<link to="IFile::offset"/>) is updated on success. 14331 14325 </desc> 14332 14326 <param name="data" type="octet" dir="in" safearray="yes"> … … 14351 14345 Writes bytes at a certain offset to this file. 14352 14346 14353 <result name="E_NOTIMPL"> 14354 The method is not implemented yet. 14355 </result> 14347 The file current position (<link to="IFile::offset"/>) is updated on success. 14356 14348 </desc> 14357 14349 <param name="offset" type="long long" dir="in"> 14358 <desc>Offset in bytes to start writing.</desc> 14350 <desc>Offset in bytes to start writing. If the file was opened with the 14351 <link to="IFile::accessMode"/> set to <link to="FileAccessMode_AppendOnly"/> 14352 or <link to="FileAccessMode_AppendRead"/>, the offset is ignored and the 14353 write always goes to the end of the file.</desc> 14359 14354 </param> 14360 14355 <param name="data" type="octet" dir="in" safearray="yes">
Note:
See TracChangeset
for help on using the changeset viewer.