API:System.SysUtils.Int64Rec

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  Int64Rec = packed record
    case Integer of
      0: (Lo, Hi: Cardinal);
      1: (Cardinals: array [0..1] of Cardinal);
      2: (Words: array [0..3] of Word);
      3: (Bytes: array [0..7] of Byte);
  end;

C++

struct DECLSPEC_DRECORD Int64Rec
{
public:
    union
    {
        struct
        {
            System::StaticArray<System::Byte, 8> Bytes;
        };
        struct
        {
            System::StaticArray<System::Word, 4> Words;
        };
        struct
        {
            System::StaticArray<unsigned, 2> Cardinals;
        };
        struct
        {
            unsigned Lo;
            unsigned Hi;
        };
    };
};

Propriétés

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

Description

Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !