EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

file.read

Reading a file.

method uint file.read (
   uint ptr,
   uint size
)

Parameters

ptr The pointer where the file will be read.
size The size of the data being read.

Return value

The function returns the size of the read data.


file.read

Reading a file.

method uint file.read (
   buf rbuf,
   uint size
)

Parameters

rbuf The buffer where data will be read. Reading is carried out by adding data to the buffer. It means that read data will be added to those already existing in the buffer.
size The size of the data being read.

Return value

The function returns the size of the read data.

Related links

Source