Difference between revisions of "Lua:readBytes"
Jump to navigation
Jump to search
Line 27: | Line 27: | ||
=== Related Functions === | === Related Functions === | ||
+ | * [[readInteger]] | ||
+ | * [[readQword]] | ||
+ | * [[readPointer]] | ||
+ | * [[readFloat]] | ||
+ | * [[readDouble]] | ||
+ | * [[readString]] | ||
* [[writeBytes]] | * [[writeBytes]] | ||
+ | * [[writeInteger]] | ||
+ | * [[writeQword]] | ||
+ | * [[writeFloat]] | ||
+ | * [[writeDouble]] | ||
+ | * [[writeString]] | ||
* [[readBytesLocal]] | * [[readBytesLocal]] | ||
+ | * [[readIntegerLocal]] | ||
+ | * [[readQwordLocal]] | ||
+ | * [[readPointerLocal]] | ||
+ | * [[readFloatLocal]] | ||
+ | * [[readDoubleLocal]] | ||
+ | * [[readStringLocal]] | ||
* [[writeBytesLocal]] | * [[writeBytesLocal]] | ||
+ | * [[writeIntegerLocal]] | ||
+ | * [[writeQwordLocal]] | ||
+ | * [[writeFloatLocal]] | ||
+ | * [[writeDoubleLocal]] | ||
+ | * [[writeStringLocal]] | ||
* [[wordToByteTable]] | * [[wordToByteTable]] | ||
* [[dwordToByteTable]] | * [[dwordToByteTable]] |
Revision as of 15:10, 8 March 2017
function readBytes(Address, Bytecount, ReturnAsTable )
Returns the bytes at the given address
Function Parameters
Parameter | Type | Description |
---|---|---|
Address | CEAddressString or Integer | The address to read |
Bytecount | Integer | The number of bytes to read |
ReturnAsTable | Boolean | Returns a table object instead of multiple return values |
See also
Related Functions
- readInteger
- readQword
- readPointer
- readFloat
- readDouble
- readString
- writeBytes
- writeInteger
- writeQword
- writeFloat
- writeDouble
- writeString
- readBytesLocal
- readIntegerLocal
- readQwordLocal
- readPointerLocal
- readFloatLocal
- readDoubleLocal
- readStringLocal
- writeBytesLocal
- writeIntegerLocal
- writeQwordLocal
- writeFloatLocal
- writeDoubleLocal
- writeStringLocal
- wordToByteTable
- dwordToByteTable
- qwordToByteTable
- floatToByteTable
- doubleToByteTable
- stringToByteTable
- wideStringToByteTable
- byteTableToWord
- byteTableToDword
- byteTableToQword
- byteTableToFloat
- byteTableToDouble
- byteTableToString
- byteTableToWideString
- AOBScan