System.ObjAuto.TParameters

De RAD Studio API Documentation
Aller à : navigation, rechercher

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;
};

Propriétés

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

Description

A usage interne.

N'utilisez pas directement TParameters.

Voir aussi