dos_compilers/Digital Research MT+86 Pascal v311/FIBDEF.LIB
2024-06-30 11:44:12 -07:00

26 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(* VERSION 0001 *)
(* DATE 03/17/82*)
(* definition of file info block for unix/udi *)
type
fibpaoc = packed array [0..0] of char;
fib = record
fname : string[37]; (* 0 *)
dummy, (* to align everything on word boundary *)
option: (notopen,fwrite,frdwr,frandom, (* 38 *)
fconio,ftrmio,flstout,fauxio)
buflen: integer; (* 40 *)
bufidx: integer; (* 42 *)
iosize: integer; (* 44 *)
feoln, (* 47 *)
feof : boolean; (* 46 *)
fbufadr:^fibpaoc; (* 48 *)
nosectrs, (* 53 *)
ftext : boolean; (* 52 *)
sysid: integer; (*fileid on unix, conn for udi 54 *)
fbuffer: fibpaoc (* 56 *)
end;
.