System.TFileRec

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

TFileRec = packed record (* must match the size the compiler generates: 592 bytes (616 bytes for x64) *)

C++

struct DECLSPEC_DRECORD TFileRec
{
public:
    System::NativeUInt Handle;
    Word Mode;
    Word Flags;
public:
    union
    {
        struct
        {
            unsigned BufSize;
            unsigned BufPos;
            unsigned BufEnd;
            System::PAnsiChar BufPtr;
            void *OpenFunc;
            void *InOutFunc;
            void *FlushFunc;
            void *CloseFunc;
            System::StaticArray<Byte, 32> UserData;
            System::StaticArray<WideChar, 260> Name;
        };
        struct
        {
            unsigned RecSize;
        };
    };
};

Propriétés

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

Description

TFileRec est le format interne des fichiers typés et non typés dans le langage Delphi.

TFileRec est le format interne des fichiers typés et non typés. TFileRec permet de transtyper une variable fichier Delphi pour accéder à ses champs internes.

Remarque :  Vous ne devez jamais déclarer de variable de ce type.