mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-21 03:12:58 +02:00
16 lines
419 B
C
16 lines
419 B
C
#ifndef __HCHAN_H__
|
|
#define __HCHAN_H__
|
|
/*
|
|
* Hercules Generic Channel internal definitions
|
|
* (c) Ivan Scott Warren 2004
|
|
* based on work
|
|
* (c) Roger Bowler, Jan Jaeger and Others 1999-2004
|
|
* This code is covered by the QPL Licence
|
|
*/
|
|
|
|
static int hchan_init_exec(DEVBLK *,int,BYTE **);
|
|
static int hchan_init_connect(DEVBLK *,int,BYTE **);
|
|
static int hchan_init_int(DEVBLK *,int,BYTE **);
|
|
|
|
#endif
|