System.ZLib.MoveI32

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MoveI32(const Source; var Dest; Count: Integer); register;

C++

extern DELPHI_PACKAGE void __fastcall MoveI32 _DEPRECATED_ATTRIBUTE1("use System.Move") (const void *Source, void *Dest, int Count);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.ZLib.pas
System.ZLib.hpp
System.ZLib System.ZLib

Description

Warning: MoveI32 is deprecated. Please use Move.

MoveI32 moves Count bytes from Source to Destination.

See sample:

procedure equalizer( var a , b :integer);
begin
  MoveI32( a , b , SizeOf(a) );
end;

See Also