Difference between revisions of "Lua:writeDouble"
Jump to navigation
Jump to search
(Created page with ''''function''' writeDouble(''Address'', ''Value'') Writes 8 bytes at the given address representing the value you have given as a double precision floating point value ===Funct…') |
|||
| Line 20: | Line 20: | ||
== See also == | == See also == | ||
| − | * [[ | + | * [[readDouble]] |
* [[writeBytes]] | * [[writeBytes]] | ||
* [[writeInteger]] | * [[writeInteger]] | ||
Revision as of 15:31, 22 February 2012
function writeDouble(Address, Value)
Writes 8 bytes at the given address representing the value you have given as a double precision floating point value
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Address | CEAddressString or Integer | The address of the target process to write to |
| Value | Float | The value to write to the process |