Skip to content
luxtau edited this page Apr 27, 2012 · 2 revisions

Types used in tables:

  • int32, uint32 - 32 bit integer value
  • float - 32 bit IEEE 754 floating value
  • string - fixed-size UTF-8 character string
  • variable-length string - uint32 length followed by string characters
  • bool4 - 32 bit boolean value with one significant value: 0 (false), rest of values is true
  • bool1 - 32 bit boolean value having only lower byte significant, rest are random: XXXXXX00 (false)

Type description for extractor:

  • 0: bool
  • 1: int32
  • 2: uint32
  • 3: float
  • 4: uint8
  • 5: string
Clone this wiki locally