Difference between revisions of "PtrInt"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "'''PtrInt''' is signed integer type which has the same SizeOf as Pointer. '''PtrUInt''' is unsigned integer type which has the same SizeOf as Pointer.")
 
Line 1: Line 1:
'''PtrInt''' is signed integer type which has the same SizeOf as Pointer.
+
'''PtrInt''' is signed integer type which has the same SizeOf as Pointer, ie 4 bytes on 32-bit machine and 8 bytes on 64-bit machine.
  
 
'''PtrUInt''' is unsigned integer type which has the same SizeOf as Pointer.
 
'''PtrUInt''' is unsigned integer type which has the same SizeOf as Pointer.

Revision as of 15:39, 2 July 2021

PtrInt is signed integer type which has the same SizeOf as Pointer, ie 4 bytes on 32-bit machine and 8 bytes on 64-bit machine.

PtrUInt is unsigned integer type which has the same SizeOf as Pointer.