home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / mar94 / util / misc / flush.lha / Flush / Flush.h < prev    next >
C/C++ Source or Header  |  1993-12-27  |  965b  |  67 lines

  1.  
  2. /*
  3.  * flush.h
  4.  */
  5.  
  6.  
  7. #include <limits.h>
  8. #include <fcntl.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <stdarg.h>
  13. #include <math.h>
  14. #include <ctype.h>
  15. #include <dos/dosextens.h>
  16. #include <dos/filehandler.h>
  17.  
  18. #include <proto/exec.h>
  19.  
  20. #include <clib/graphics_protos.h>
  21.  
  22. #include <exec/devices.h>
  23. #include <exec/execbase.h>
  24. #include <exec/memory.h>
  25. #include <exec/types.h>
  26.  
  27. #include <graphics/gfx.h>
  28. #include <graphics/gfxbase.h>
  29. #include <graphics/text.h>
  30.  
  31. #include <libraries/dos.h>
  32. #include <libraries/dosextens.h>
  33. #include <libraries/gadtools.h>
  34. #include <libraries/diskfont.h>
  35.  
  36. #include "typedefs.h"
  37.  
  38. extern struct ExecBase *SysBase; 
  39.  
  40. struct verref {
  41.     UWORD ver; 
  42.     UWORD rev;
  43. };
  44.  
  45. struct fonts {
  46.     UWORD font_x; 
  47.     UWORD font_y;
  48. };
  49.  
  50. #define S_BUFLEN 32
  51.  
  52. typedef struct s_lib {
  53.         int o_cnt;
  54.     union {
  55.         struct verref  vr;
  56.         struct fonts   fonts;    
  57.     } confeds ;
  58.         char name[S_BUFLEN];
  59. } S_LIB;
  60.  
  61.  
  62. #include "flush_protos.h"
  63.  
  64. /**/
  65.  
  66.  
  67.