System.ObjAuto.TParameters

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TParameters = packed record
{$IFDEF CPUX86}
    Registers: array[paEDX..paECX] of Cardinal;
    EAXRegister: Cardinal;
    ReturnAddress: Pointer;
{$ENDIF CPUX86}
    Stack: array[0..1023] of Byte;
  end;

C++

struct DECLSPEC_DRECORD TParameters
{
public:
#ifndef _WIN64
    System::StaticArray<unsigned, 2> Registers;
    unsigned EAXRegister;
    void *ReturnAddress;
#endif /* not _WIN64 */
    System::StaticArray<System::Byte, 1024> Stack;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.ObjAuto.pas
System.ObjAuto.hpp
System.ObjAuto System.ObjAuto

Description

For internal use.

You should not use TParameters directly.

See Also