Skip to content
Member Filters
Show Inherited
Show Protected
Show abstract
GR32_LowLevel🞂MoveLongwordProcedure

MoveLongword

Copies a block of 32-bit values from Source memory to Dest memory.

Declaration ​

pascal
procedure MoveLongword(const Source; var Dest; Count: Integer);

Parameters ​

ParameterTypeDescription
SourceconstReference to the source memory block.
DestvarReference to the destination memory block.
CountIntegerNumber of 32-bit (4-byte) elements to copy.

Description ​

MoveLongword copies Count 32-bit items (4 bytes each) from Source to Dest. It is optimized for 32-bit aligned memory copies such as pixel buffer transfers and scanline copies.

See also ​