Difference between revisions of "ObjectType:uintptr"

From Lavish Software Wiki
Jump to navigation Jump to search
m (Lax moved page DataType:uintptr to ObjectType:uintptr)
 
Line 1: Line 1:
 +
{{ObjectType-Vitals|uintptr|[[LavishScript]]|[[ObjectType:uint|uint]]|The string representation of this uint|none|no|unsigned int *}}
 +
 
== Description ==
 
== Description ==
An [[DataType:uintptr|uintptr]] is simply a <tt>pointer</tt> to a [[DataType:uint|uint]].  The type inherits [[DataType:uint|uint]], and can be used as if it ''were'' a [[DataType:uint|uint]].
+
An [[ObjectType:uintptr|uintptr]] is simply a <tt>pointer</tt> to a [[ObjectType:uint|uint]].  The type inherits [[ObjectType:uint|uint]], and can be used as if it ''were'' a [[ObjectType:uint|uint]].
  
 
== Members ==
 
== Members ==
* [[DataType:uint|uint]] '''Address''': The memory address of the actual integer
+
* [[ObjectType:int64|int64]] '''Address''': The memory address of the actual integer
  
 
== Methods ==
 
== Methods ==
 
''(none)''
 
''(none)''
 
== Inherits ==
 
* [[DataType:uint|uint]]
 
 
== Returns ==
 
The string representation of this uint
 
  
 
== Examples ==
 
== Examples ==
 
===Display a integer pointers address===
 
===Display a integer pointers address===
 
*echo Memory Address: ${Point1.Address}
 
*echo Memory Address: ${Point1.Address}
 
== Operates On ==
 
<tt>unsigned int *</tt>
 
  
 
== See Also ==
 
== See Also ==
* [[LavishScript:Data Types|Data Types]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
[[Category:LavishScript Data Types]]
 

Latest revision as of 16:02, 8 July 2018

Object Type Vitals
uintptr
Defined By LavishScript
Inherits uint
Reduces To The string representation of this uint
Variable Object Type none
Uses Sub-Types no
C/C++ Type unsigned int *

Description

An uintptr is simply a pointer to a uint. The type inherits uint, and can be used as if it were a uint.

Members

  • int64 Address: The memory address of the actual integer

Methods

(none)

Examples

Display a integer pointers address

  • echo Memory Address: ${Point1.Address}

See Also

LavishScript Object Types