System.Win.Registry.TRegDataInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TRegDataInfo = record
    RegData: TRegDataType;
    DataSize: Integer;
  end;

C++

struct DECLSPEC_DRECORD TRegDataInfo
{
public:
    TRegDataType RegData;
    int DataSize;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Win.Registry.pas
System.Win.Registry.hpp
System.Win.Registry System.Win.Registry

Description

TRegDataInfo is a type used by the GetDataInfo method of TRegistery.

TRegDataInfo is a type used by the GetDataInfo method of TRegistery. Records of type TRegDataInfo contain two fields: a field called RegData, of type TRegDataType, that specifies the data type of the data value; and a field called DataSize that specifies the size, in bytes, of the data value.