Source position: image.inc line 11
type sImage = record  | 
height: cshort;  | 
width: cshort;  | 
bpp: cint;  | 
palette: pcushort;  | 
image: record  | 
case Integer of  | 
0: (  | 
data8: pcuchar;  | 
);  | 
1: (  | 
data16: pcushort;  | 
);  | 
2: (  | 
data32: pcuint;  | 
);  | 
end;  | 
end;  |