home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d229
/
sim.lha
/
Sim
/
extdevcom
/
sim_msg.h
next >
Wrap
C/C++ Source or Header
|
1989-07-20
|
905b
|
41 lines
/***************************************************************************
*
* Programm: Sim,
* Modul: sim_msg.h
* Funktion: Headerfile für externe Bausteindefinitionen
*
* Datum: 03.05.89
* letzte Änderung: 03.06.89
*
***************************************************************************/
#include <libraries/dosextens.h>
#include <workbench/startup.h>
#define SIM_VERSION 4
#define SIM_REVISION 0
struct sim_msg {
struct Message msg;
int version;
int revision;
USHORT in_count;
USHORT out_count;
USHORT state_count;
struct device **running;
void (*device)();
void (*dev_init)();
};
struct extern_device {
struct extern_device *next;
char *name;
BPTR seg;
struct MsgPort *msgport;
};