* fixed palettype declaration (web bug #2547)

This commit is contained in:
Jonas Maebe 2003-07-25 11:25:36 +00:00
parent a783aea0b9
commit c3326c434a

View File

@ -136,9 +136,14 @@ end;
LineSettingsType = Record
LineStyle,Pattern, Width : Word;
end;
PaletteType = Record
Size : Byte;
Colors : array[0..MAxColor] of shortint;
RGBRec = packed record
Red: smallint;
Green: smallint;
Blue : smallint;
end;
PaletteType = record
Size : longint;
Colors : array[0..MaxColors] of RGBRec;
end;
PointType = Record
X,Y : Integer;