Vcl.Imaging.GIFImg.TGIFApplicationRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TGIFApplicationRec = record
    Identifier: TGIFIdentifierCode;
    Authentication: TGIFAuthenticationCode;
  end;

C++

struct DECLSPEC_DRECORD TGIFApplicationRec
{
public:
    TGIFIdentifierCode Identifier;
    TGIFAuthenticationCode Authentication;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Imaging.GIFImg.pas
Vcl.Imaging.GIFImg.hpp
Vcl.Imaging.GIFImg Vcl.Imaging.GIFImg

Description

TGIFApplicationRec is used to store information about the application that contains the GIF image.

A variable of type TGIFApplicationRec contains information about the application's identifier and extension.

The following table lists the fields contained in a variable of type TGIFApplicationRec.


Field Meaning

Identifier

Represents a code used to identify the application owning the application extension.

Authentication

Represents a code used to authenticate the application identifier.



TGIFApplicationRec is used internally.

See Also