MTA:Eir/FileSystem/file/writeUInt: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ This function attempts to write an unsigned integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four...")
 
No edit summary
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int file.writeUInt ( unsigned_int value )
int file:writeUInt ( unsigned_int value )
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 23:46, 16 January 2022

This function attempts to write an unsigned integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four.

Syntax

int file:writeUInt ( unsigned_int value )

Arguments

  • value: a number in the range of [0..4294967295] to write into the file/stream

Returns

Returns the amount of bytes written during the write operation. Returns false if value is not a valid number type.

Example

todo.

FileSystem File Functions