home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD v1.2
/
amidev_cd_12.iso
/
devcon
/
sanfrancisco_1989
/
sf-devcon89.1
/
commodities
/
include
/
cx
/
sysall.h
< prev
Wrap
C/C++ Source or Header
|
1992-08-27
|
666b
|
34 lines
/** sysall.h -- commodities system needs **/
#ifndef SYSALL_H
#define SYSALL_H 1
/* all include files from "system," to be pre-compiled */
#include <exec/types.h>
#include <exec/ports.h>
#include <exec/io.h>
#include <exec/interrupts.h>
#include <exec/devices.h>
#include <exec/memory.h>
#include <exec/nodes.h>
#include <exec/lists.h>
#include <exec/resident.h>
#include <exec/libraries.h>
#include <exec/semaphores.h>
#include <devices/input.h>
#include <devices/inputevent.h>
#include <devices/keymap.h>
#include <devices/console.h>
/* defined in the makefile */
#ifdef IAZTEC
#include <functions.h>
#endif
#ifdef ILATTICE
#include "cxlib.p"
#endif
#endif