source: buchla-68k/libcio/fsinit.x@ 8973acd

Last change on this file since 8973acd was 8973acd, checked in by Thomas Lopatic <thomas@…>, 7 years ago

No more warnings in libcio.

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[526a993]1/*
2 =============================================================================
3 fsinit.c -- external declarations
4 =============================================================================
5*/
6
[6262b5c]7#pragma once
8
9#include "biosdefs.h"
[6aa430b]10#include "fspars.h"
[6262b5c]11#include "io.h"
12#include "stdint.h"
[6aa430b]13#include "stdio.h"
[6262b5c]14
15/*
16 =============================================================================
[526a993]17 external variables
[6262b5c]18 =============================================================================
19*/
20
[2340de6]21extern FILE Cbuffs[NSTREAMS];
22extern int32_t Stdbuf[MAXDFILE][BUFSIZL];
[8973acd]23extern int32_t *Stdbufs;
[2340de6]24extern int8_t Wrkbuf[BPSEC];
[6262b5c]25extern int16_t _b_sect;
26extern int16_t _b_side;
27extern int16_t _b_tbuf[9][256];
28extern int16_t _b_trak;
29extern int16_t _b_tsec;
[2340de6]30extern struct fcb _fcbtab[MAXDFILE];
31extern struct channel chantab[MAXCHAN];
[6262b5c]32
33/*
34 =============================================================================
[526a993]35 external functions
[6262b5c]36 =============================================================================
37*/
38
[8973acd]39extern void InitCH(struct channel *cp, int16_t rdi, int16_t wri, int16_t ioi, int16_t ski, chclo cfp, io_arg charg);
[6262b5c]40extern void InitFS(void);
[8973acd]41extern void Init_CB(FILE *fp, uint8_t flags, int16_t unit, int32_t *bufad, int16_t bufsize);
[6262b5c]42extern int16_t _badfd(void);
43extern int16_t _noper(void);
[4a17aeb]44
45extern int16_t _badfc(io_arg arg);
[8973acd]46extern int16_t _badfio(io_arg arg, void *buff, int16_t len);
[4a17aeb]47extern int16_t _nopc(io_arg arg);
[8973acd]48extern int16_t _nopo(int8_t *name, uint16_t flag, struct channel *chp, struct devtabl *dp);
Note: See TracBrowser for help on using the repository browser.