Difference between revisions of "Lua:byteTableToWord"
Jump to navigation
Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
|||
| Line 1: | Line 1: | ||
| − | + | [[Category:Lua]] | |
| + | '''function''' byteTableToWord(''Table'') ''':''' integer | ||
| + | |||
| + | Converts a byte table to a WORD (2 bytes), interpreting them as an integer. | ||
| + | |||
| + | |||
| + | === Function Parameters === | ||
| + | {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0" | ||
| + | !align="left"|Parameter | ||
| + | !align="left"|Type | ||
| + | !style="width: 80%;background-color:white;" align="left"|Description | ||
| + | |- | ||
| + | |Table | ||
| + | |table | ||
| + | |The table of bytes to convert | ||
| + | |} | ||
| + | |||
| + | |||
| + | == Examples == | ||
| + | Code: | ||
| + | local bt = { 0x64, 0x00 } | ||
| + | local value = byteTableToWord(bt) | ||
| + | print(string.format('0x%0X', value)) | ||
| + | print(value) | ||
| + | |||
| + | Output: | ||
| + | 0x64 | ||
| + | 100 | ||
| + | |||
| + | |||
| + | {{LuaSeeAlso}} | ||
| + | |||
| + | === Related Functions === | ||
| + | {{ReadWriteMemory}} | ||
Revision as of 19:09, 18 March 2019
function byteTableToWord(Table) : integer
Converts a byte table to a WORD (2 bytes), interpreting them as an integer.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Table | table | The table of bytes to convert |
Examples
Code:
local bt = { 0x64, 0x00 }
local value = byteTableToWord(bt)
print(string.format('0x%0X', value))
print(value)
Output:
0x64 100
See also
| Lua |
| Script Engine |
Related Functions
| Read Functions |
|---|
| readBytes |
| readSmallInteger |
| readInteger |
| readQword |
| readPointer |
| readFloat |
| readDouble |
| readString |
| Read Functions (Local Process) |
| readBytesLocal |
| readIntegerLocal |
| readQwordLocal |
| readPointerLocal |
| readFloatLocal |
| readDoubleLocal |
| readStringLocal |
| Write Functions |
| writeBytes |
| writeSmallInteger |
| writeInteger |
| writeQword |
| writeFloat |
| writeDouble |
| writeString |
| Write Functions (Local Process) |
| writeBytesLocal |
| writeIntegerLocal |
| writeQwordLocal |
| writeFloatLocal |
| writeDoubleLocal |
| writeStringLocal |
| Byte Table Conversions (Value → Byte Table) |
| wordToByteTable |
| dwordToByteTable |
| qwordToByteTable |
| floatToByteTable |
| doubleToByteTable |
| stringToByteTable |
| wideStringToByteTable |
| Byte Table Conversions (Byte Table → Value) |
| byteTableToWord |
| byteTableToDword |
| byteTableToQword |
| byteTableToFloat |
| byteTableToDouble |
| byteTableToString |
| byteTableToWideString |