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   
C/C++ Source or Header  |  1992-08-27  |  666b  |  34 lines

  1. /** sysall.h -- commodities system needs    **/
  2. #ifndef SYSALL_H
  3. #define SYSALL_H 1
  4.  
  5. /* all include files from "system," to be pre-compiled */
  6.  
  7. #include <exec/types.h>
  8. #include <exec/ports.h>
  9. #include <exec/io.h>
  10. #include <exec/interrupts.h>
  11. #include <exec/devices.h>
  12. #include <exec/memory.h>
  13. #include <exec/nodes.h>
  14. #include <exec/lists.h>
  15. #include <exec/resident.h>
  16. #include <exec/libraries.h>
  17. #include <exec/semaphores.h>
  18.  
  19. #include <devices/input.h>
  20. #include <devices/inputevent.h>
  21. #include <devices/keymap.h>
  22. #include <devices/console.h>
  23.  
  24. /* defined in the makefile     */
  25. #ifdef IAZTEC
  26. #include <functions.h>
  27. #endif
  28.  
  29. #ifdef ILATTICE
  30. #include "cxlib.p"
  31. #endif
  32.  
  33. #endif
  34.