home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsdemos / egsexamples / requester / file / includes.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.2 KB  |  56 lines

  1. /*
  2.  * Extra Amiga-Includes
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <exec/types.h>
  9. #include <exec/memory.h>
  10. #include <exec/io.h>
  11. #include <exec/nodes.h>
  12. #include <exec/interrupts.h>
  13. #include <exec/devices.h>
  14. #include <devices/input.h>
  15. #include <devices/inputevent.h>
  16. #include <proto/all.h>
  17. /*
  18.  * This are all EGS-Includes
  19.  *
  20.  */
  21.  
  22. #include <egs/egs.h>
  23. #include <egs/egsblit.h>
  24. #include <egs/egslayers.h>
  25. #include <egs/egsgfx.h>
  26. #include <egs/egsintui.h>
  27. #include <egs/egsgadbox.h>
  28. #include <egs/egsrequest.h>
  29. #include <egs/egb/gbmenuselect.h>
  30. #include <egs/egb/gbradio.h>
  31. #include <egs/egb/gbscrollbox.h>
  32. #include <egs/egb/gbselect.h>
  33. #include <egs/egb/gbsets.h>
  34. #include <egs/egb/gbtextinfo.h>
  35.  
  36. /*
  37.  * Include Proto-Files
  38.  */
  39.  
  40. #include <egs/proto/egs.h>
  41. #include <egs/proto/egsblit.h>
  42. #include <egs/proto/egslayers.h>
  43. #include <egs/proto/egsgfx.h>
  44. #include <egs/proto/egsintui.h>
  45. #include <egs/proto/egsgadbox.h>
  46. #include <egs/proto/egsrequest.h>
  47. #include <egs/proto/gbmenuselect.h>
  48. #include <egs/proto/gbradio.h>
  49. #include <egs/proto/gbscrollbox.h>
  50. #include <egs/proto/gbselect.h>
  51. #include <egs/proto/gbsets.h>
  52. #include <egs/proto/gbtextinfo.h>
  53.  
  54. /*
  55. */
  56.