Since there is a 64-bit delphi compiler, we must use 64-bit pointers.
so interesting, what's the difference if we use nativeint or nativeint. eg,
Should i use
Pointer(NativeUInt(Pointer(Buffer)) + LongWord(datawrote))^,
or
Pointer(NativeInt(Pointer(Buffer)) + LongWord(datawrote))^,
Does it matter? which is better style?
source
share