Difference between revisions of "API File.NVM.ReadByte"

From Flowcode Help
Jump to navigationJump to search
(XML import API auto-gen)
(XML import)
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<sidebar>API contents</sidebar>
+
<sidebar>API Contents</sidebar>
 
Reads a single byte from the NVM, -1 if empty
 
Reads a single byte from the NVM, -1 if empty
  
 +
<div style="width:25%; float:right" class="toc">
 +
====Class hierarchy====
 +
[[API File|File]]
 +
:[[API File.NVM|NVM]]
 +
::[[API File.NVM|ReadByte]]
 +
</div>
 +
__TOC__
  
===Parameters===
+
==Parameters==
''[[Variable types|HANDLE]] FileHandle''
+
[[Variable Types|HANDLE]] ''FileHandle''
 
:The handle of an open file
 
:The handle of an open file
  
''[[Variable types|ULONG]] Address''
+
[[Variable Types|ULONG]] ''Address''
 
:Position in the file in bytes
 
:Position in the file in bytes
  
===Return value===
 
[[Variable types|INT]]
 
  
No additional information
+
==Return value==
 +
[[Variable Types|INT]]
  
===Detailed description===
+
''<span style="color:red;">No additional information</span>''
''No additional information''
 
  
===Examples===
+
 
====Calling in a calculation====
+
==Detailed description==
 +
''<span style="color:red;">No additional information</span>''
 +
 
 +
 
 +
==Examples==
 +
===Calling in a calculation===
 
* Declare a variable 'result' of type INT
 
* Declare a variable 'result' of type INT
* Add to a calculation icon: result = ::File.NVM.ReadByte(filehandle, address)
+
* Add to a calculation icon: <pre class="brush:[cpp]">result = ::File.NVM.ReadByte(filehandle, address)</pre>
 +
 
 +
''<span style="color:red;">No additional examples</span>''

Latest revision as of 15:57, 16 January 2014

<sidebar>API Contents</sidebar> Reads a single byte from the NVM, -1 if empty

Class hierarchy

File

NVM
ReadByte

Parameters

HANDLE FileHandle

The handle of an open file

ULONG Address

Position in the file in bytes


Return value

INT

No additional information


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type INT
  • Add to a calculation icon:
    result = ::File.NVM.ReadByte(filehandle, address)

No additional examples