API:System.SysUtils.TMarshaller

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TMarshaller = record
  private type
    PDisposeRec = ^TDisposeRec;
    TDisposeProc = procedure(Args: PDisposeRec);
    TDisposeRec = record
      Proc: TDisposeProc;
      Obj: TObject;
      Arg1: NativeInt;
      Arg2: NativeInt;
    end;
    IDisposer = interface
      procedure AddDispose(Rec: TDisposeRec);
      procedure RemoveDispose(Rec: TDisposeRec);
      procedure Flush;
    end;

Properties

Type Visibility Source Unit Parent
record public System.SysUtils.pas System.SysUtils System.SysUtils

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!