1 | /*
|
---|
2 | =============================================================================
|
---|
3 | fsinit.c -- external declarations
|
---|
4 | =============================================================================
|
---|
5 | */
|
---|
6 |
|
---|
7 | #pragma once
|
---|
8 |
|
---|
9 | #include "biosdefs.h"
|
---|
10 | #include "fspars.h"
|
---|
11 | #include "io.h"
|
---|
12 | #include "stdint.h"
|
---|
13 | #include "stdio.h"
|
---|
14 |
|
---|
15 | /*
|
---|
16 | =============================================================================
|
---|
17 | external variables
|
---|
18 | =============================================================================
|
---|
19 | */
|
---|
20 |
|
---|
21 | extern FILE Cbuffs[NSTREAMS];
|
---|
22 | extern int32_t Stdbuf[MAXDFILE][BUFSIZL];
|
---|
23 | extern int8_t *Stdbufs;
|
---|
24 | extern int8_t Wrkbuf[BPSEC];
|
---|
25 | extern int16_t _b_sect;
|
---|
26 | extern int16_t _b_side;
|
---|
27 | extern int16_t _b_tbuf[9][256];
|
---|
28 | extern int16_t _b_trak;
|
---|
29 | extern int16_t _b_tsec;
|
---|
30 | extern struct fcb _fcbtab[MAXDFILE];
|
---|
31 | extern struct channel chantab[MAXCHAN];
|
---|
32 |
|
---|
33 | /*
|
---|
34 | =============================================================================
|
---|
35 | external functions
|
---|
36 | =============================================================================
|
---|
37 | */
|
---|
38 |
|
---|
39 | extern void InitCH(struct channel *cp, int8_t rdi, int8_t wri, int8_t ioi, int8_t ski, chclo cfp, io_arg charg);
|
---|
40 | extern void InitFS(void);
|
---|
41 | extern void Init_CB(FILE *fp, int8_t flags, int8_t unit, int32_t *bufad, int16_t bufsize);
|
---|
42 | extern int16_t _badfd(void);
|
---|
43 | extern int16_t _noper(void);
|
---|
44 |
|
---|
45 | extern int16_t _badfc(io_arg arg);
|
---|
46 | extern int16_t _badfio(io_arg arg, int8_t *buff, int16_t len);
|
---|
47 | extern int16_t _nopc(io_arg arg);
|
---|
48 | extern int16_t _nopo(int8_t *name, int16_t flag, int16_t mode, struct channel *chp, struct devtabl *dp);
|
---|