home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / src / specialhost / preinclude.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  887b  |  37 lines

  1. #include <intuition/intuitionbase.h>
  2. #include <libraries/dosextens.h>
  3. #include <graphics/gfxbase.h>
  4. #include <graphics/scale.h>
  5. #include <exec/memory.h>
  6.  
  7. #include <stdlib.h>
  8. #include <stdarg.h>
  9. #include <string.h>
  10. #include <signal.h>
  11. #include <stdio.h>
  12. #include <math.h>
  13.  
  14. #include "iff.h"
  15. #include "special.h"
  16. #include "specialparse.h"
  17. #include "specialhost.h"
  18. #include "tpic.h"
  19. #include "graphics.h"
  20.  
  21. #include <clib/intuition_protos.h>
  22. #include <clib/graphics_protos.h>
  23. #include <clib/exec_protos.h>
  24. #include <clib/dos_protos.h>
  25.  
  26. #include <pragmas/intuition_pragmas.h>
  27. #include <pragmas/graphics_pragmas.h>
  28. #include <pragmas/exec_pragmas.h>
  29. #include <pragmas/dos_pragmas.h>
  30.  
  31. extern struct ExecBase        *SysBase;
  32. extern struct DosLibrary    *DOSBase;
  33.  
  34. extern struct Library        *IFFBase;        /* defined in specialwin.c */
  35. extern struct GfxBase        *GfxBase;
  36. extern struct IntuitionBase    *IntuitionBase;
  37.