summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbf/tw8781.pp
blob: 2223c13bd1e6c500111736dee98f480ae726ea83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ %fail }
program packer;
type
    HeaderStr=record
    Name:Array[1..20] of char;
    Objects:byte;
    FirstObject:longint;
    end;

    ObjStr=record
    Name:array[1..8] of char;
    Size:longint;
    Width:integer;
    Height:integer;
    ObjType:byte;
    NextObject:longint
    end;

function openfile(filepath:string):file;
begin
end;

begin

end.