System.ObjAuto.TParameters

提供: RAD Studio API Documentation
移動先: 案内検索

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.ObjAuto.pas
System.ObjAuto.hpp
System.ObjAuto System.ObjAuto

説明

内部的に使用するためのものです。

TParameters を直接使用しないでください。

関連項目