home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d3xx
/
d335
/
dtc.lha
/
DTC
/
comdtc.inc
< prev
next >
Wrap
Text File
|
1990-03-22
|
1KB
|
44 lines
c Common file COMDTC.INC for Desk Top Calendar programs
c
parameter (iterm = 7)
C Terminal unit number
c
C Length of character buffers
parameter (icmln = 84)
PARAMETER (iaptlim = 68)
C maximum displayed length
c
Integer*4 comlen, comidx
C Current info
INTEGER*1 line(icmln)
C command line
common /cmdlin/ comlen, comidx, line
c
Integer*4 tokstart, toklen, tokfidx
C Command-line scanning info
INTEGER*1 tokfound
C for multi-token scans
common /cmdscan/ tokstart, toklen, tokfidx, tokfound
c
Integer*4 rdspfg
C flag to reverse sense of display of time
Integer*4 ctlfg
C misc control flags here
common /ctls/ rdspfg, ctlfg
c
Integer*4 idyr, idmo, iddy, incmod, ibigyr
common /defdat/ idyr, idmo, iddy, incmod, ibigyr
c
Integer*4 fnsz
C Size of filename
INTEGER*1 fname(60)
Character*60 fnc
c
common /fn/ fnsz, fname
Equivalence(fnc,fname(1))
c
INTEGER*1 ucmask
C Useful constant
C End of COMDTC.INC