API File.Buffer.WriteByte: Difference between revisions
Appearance
XML import API auto-gen |
XML import of API auto-gen |
||
| Line 21: | Line 21: | ||
====Calling in a calculation==== | ====Calling in a calculation==== | ||
* Declare a variable 'result' of type BOOL | * Declare a variable 'result' of type BOOL | ||
* Add to a calculation icon: result = ::File.Buffer.WriteByte(filehandle, data) | * Add to a calculation icon: <pre class="brush:[C]">result = ::File.Buffer.WriteByte(filehandle, data)</pre> | ||
Revision as of 15:35, 10 May 2013
<sidebar>API contents</sidebar> Writes a single byte to the input stream
Parameters
HANDLE FileHandle
- The handle of an open file
BYTE Data
- A byte of data to write to the file
Return value
No additional information
Detailed description
No additional information
Examples
Calling in a calculation
- Declare a variable 'result' of type BOOL
- Add to a calculation icon:
result = ::File.Buffer.WriteByte(filehandle, data)