tw8781.pp 357 B

12345678910111213141516171819202122232425
  1. { %fail }
  2. program packer;
  3. type
  4. HeaderStr=record
  5. Name:Array[1..20] of char;
  6. Objects:byte;
  7. FirstObject:longint;
  8. end;
  9. ObjStr=record
  10. Name:array[1..8] of char;
  11. Size:longint;
  12. Width:integer;
  13. Height:integer;
  14. ObjType:byte;
  15. NextObject:longint
  16. end;
  17. function openfile(filepath:string):file;
  18. begin
  19. end;
  20. begin
  21. end.