Data types: Difference between revisions

Content deleted Content added
Created page with "== Basic data types == * '''byte''': An 8-bit unsigned integer * '''uint16''': A 16-bit unsigned integer * '''int16''': A 16-bit two's compliment signed integer * '''uint32''': A 32-bit unsigned integer * '''pointer16''': A 16-bit pointer * '''pointer32''': A 32-bit pointer * '''boolean''': A value of zero indicates false, any other value indicates true * '''type[X]''': An array containing X elements of 'type' * '''unused''': The data is unused and therefore has no type..."
 
No edit summary
Line 8: Line 8:
* '''pointer32''': A 32-bit pointer
* '''pointer32''': A 32-bit pointer
* '''boolean''': A value of zero indicates false, any other value indicates true
* '''boolean''': A value of zero indicates false, any other value indicates true
* '''bit field''': Indicates that there are multiple different fields stored within certain bits of the value
* '''type[X]''': An array containing X elements of 'type'
* '''type[X]''': An array containing X elements of 'type'
* '''unused''': The data is unused and therefore has no type
* '''unused''': The data is unused and therefore has no type