The Delphi Bug List

Entry No.
595
RTL - Win - ShlObj
TFileGroupDescriptorW is incorrectly declared in ShlObj.pas
1.02 2.01 3.0 3.01 3.02 4.0 4.01 4.02 4.03 5.0 5.01 6.0 6.01 6.02 Kylix 1.0
N/AN/AN/AN/AN/AExistsExistsExistsExistsExistsExistsExistsExistsExistsN/A
Description
Reported by Anders Melander; checked by Reinier Sterkenburg
In ShlObj.pas, the _FILEGROUPDESCRIPTORW record (base type for TFileGroupDescriptorW) is declared as:
  _FILEGROUPDESCRIPTORW = record
    cItems: UINT;
    fgd: array[0..0] of TFileDescriptor;
  end;
It should be declared as:
  _FILEGROUPDESCRIPTORW = record
    cItems: UINT;
    fgd: array[0..0] of TFileDescriptorW;
  end;
Latest update of this entry: 2002-04-09

Post a comment on this bug


Index page
Delphi Bug List home page
The Delphi Bug Lists are presently maintained by Jordan Russell, who has taken over this task from Reinier Sterkenburg since August 2000.
All feedback is appreciated. See also the feedback section of the Delphi Bug List home page.