RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Registry.TRegDataInfo Record

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

Pascal
TRegDataInfo = record
  RegData: TRegDataType;
  DataSize: Integer;
end;
C++
struct TRegDataInfo {
  TRegDataType RegData;
  int DataSize;
};

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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!