home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / driver / print / amiga / muiprint.h < prev    next >
C/C++ Source or Header  |  1994-06-09  |  1KB  |  67 lines

  1. /* muiprint.h */
  2.  
  3. #ifndef __MUIPRINT_H__
  4. #define __MUIPRINT_H__
  5.  
  6.  
  7. /* MUI */
  8. #include <libraries/mui.h>
  9.  
  10. /* System */
  11. #include <dos/dos.h>
  12. #include <graphics/gfxmacros.h>
  13. #include <workbench/workbench.h>
  14.  
  15. /* Prototypes */
  16. #include <clib/alib_protos.h>
  17. #include <clib/exec_protos.h>
  18. #include <clib/dos_protos.h>
  19. #include <clib/icon_protos.h>
  20. #include <clib/graphics_protos.h>
  21. #include <clib/intuition_protos.h>
  22. #include <clib/gadtools_protos.h>
  23. #include <clib/utility_protos.h>
  24. #include <clib/asl_protos.h>
  25. #include <clib/muimaster_protos.h>
  26.  
  27. #include <pragmas/exec_pragmas.h>
  28. #include <pragmas/dos_pragmas.h>
  29. #include <pragmas/icon_pragmas.h>
  30. #include <pragmas/graphics_pragmas.h>
  31. #include <pragmas/intuition_pragmas.h>
  32. #include <pragmas/gadtools_pragmas.h>
  33. #include <pragmas/utility_pragmas.h>
  34. #include <pragmas/asl_pragmas.h>
  35. #include <pragmas/muimaster_pragmas.h>
  36.  
  37. extern struct Library *SysBase,*IntuitionBase,*UtilityBase,*GfxBase,*DOSBase,*IconBase;
  38.  
  39.  
  40.  
  41. /* ANSI C */
  42. #include <stdlib.h>
  43. #include <string.h>
  44. #include <stdio.h>
  45.  
  46. #ifndef MAKE_ID
  47. #define MAKE_ID(a,b,c,d) ((ULONG) (a)<<24 | (ULONG) (b)<<16 | (ULONG) (c)<<8 | (ULONG) (d))
  48. #endif
  49.  
  50.  
  51.  
  52. struct ListEntry
  53. {
  54.     struct MinNode         MinNode;
  55.     STRPTR             Title;
  56. };
  57.  
  58.  
  59. #include "muiprint.i"
  60.  
  61. #define PrintID        1
  62. #define PrefsID     2
  63. #define CancelPrintID    3
  64. #define FatalID        4    // da passiert nicht viel, nur dass man selbst wieder an Zug kommt
  65.  
  66. #endif
  67.