summaryrefslogtreecommitdiff
path: root/v4.0/src/H/CDS.H
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/H/CDS.H
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/H/CDS.H')
-rw-r--r--v4.0/src/H/CDS.H25
1 files changed, 25 insertions, 0 deletions
diff --git a/v4.0/src/H/CDS.H b/v4.0/src/H/CDS.H
new file mode 100644
index 0000000..8ff2b26
--- /dev/null
+++ b/v4.0/src/H/CDS.H
@@ -0,0 +1,25 @@
1/* structure of a CDS */
2
3#define DIRSTRLEN 64+3
4
5struct 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
23extern char fGetCDS() ;
24extern char fPutCDS() ;
25 \ No newline at end of file