home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
CPM
/
PARASOL
/
VIDEOSTO.ARK
/
STARTUP.FIL
< prev
next >
Wrap
Text File
|
1986-07-21
|
2KB
|
74 lines
{---------------------------------------------------------------
{ START-UP PARAMETERS FILE
{ Always located on drive A: user 0
{
{ File format:
{ record-range Contents
{ ------------ ----------------------------
{ 0 Console-types
{ 1 - 16 Printer Initialization (0 - 15)
{ 17 - end Office-codes, locations, etc
{----------------------------------------------------------------
record startup.rec;
string 128;
endrec;
{--------------------------------------
{ Console-types
{--------------------------------------
redefine startup.rec;
record startup.con.tbl;
byte startup.con.type;
string 15;
endrec;
word startup.nxt;
endredef;
{--------------------------------------
{ Console / Printer Initialization
{--------------------------------------
redefine startup.rec;
string startup.prn.init 64;
byte startup.prn.unit;
byte startup.prn.width;
field startup.prn.desc 32;
endredef;
{------------------------------------
{ Company Identification Record
{------------------------------------
redefine startup.rec;
record startup.disp.rec;
field startup.co.code 3;
field startup.prog.ext 3;
field startup.data.ext 3;
field startup.dflt.prog 8;
field startup.password 8;
byte startup.prog.drive;
byte startup.data.drive;
byte startup.backup.drive;
byte startup.sort.drive;
endrec;
byte startup.user;
record startup.printer.assignments;
byte startup.narrow.printer;
byte startup.wide.printer;
byte startup.ins.printer;
byte startup.bill.printer;
byte startup.ibill.printer;
byte startup.check.printer;
byte startup.widest.printer;
string 9; {--fill out to 16--}
endrec;
record startup.con.valid.rec;
byte startup.con.valid;
string 15;
endrec;
endredef;
string startup.file.name 15 value "INITPARM.PAR";
file startup.file,
disk,
random,
key startup.key,
record startup.rec,
value startup.file.name;