blob: 8ff2b26d07a00509b270828c9914ba0778b584f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* structure of a CDS */
#define DIRSTRLEN 64+3
struct CDSType
{
char text[DIRSTRLEN] ;
unsigned flags ;
long pDPB ;
long ID ;
unsigned wUser ;
unsigned cbEnd ;
char type ;
long ifs_hdr ;
char fsda[2] ;
} ;
#define CDSNET 0x8000
#define CDSINUSE 0x4000
#define CDSSPLICE 0x2000
#define CDSLOCAL 0x1000
extern char fGetCDS() ;
extern char fPutCDS() ;
|