]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/H/CDS.H

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / H / CDS.H
1 /* structure of a CDS */
2
3 #define DIRSTRLEN 64+3
4
5 struct CDSType
6 {
7 char text[DIRSTRLEN] ;
8 unsigned flags ;
9 long pDPB ;
10 long ID ;
11 unsigned wUser ;
12 unsigned cbEnd ;
13 char type ;
14 long ifs_hdr ;
15 char fsda[2] ;
16 } ;
17
18 #define CDSNET 0x8000
19 #define CDSINUSE 0x4000
20 #define CDSSPLICE 0x2000
21 #define CDSLOCAL 0x1000
22
23 extern char fGetCDS() ;
24 extern char fPutCDS() ;
25 \1a