home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / include / graphics / gfxnodes.h < prev    next >
C/C++ Source or Header  |  1977-12-31  |  852b  |  50 lines

  1. #ifndef GRAPHICS_GFXNODES_H
  2. #define GRAPHICS_GFXNODES_H 1
  3. /*
  4. ** gfxnodes.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for gfxnodes.h
  17. */
  18. #ifndef ExtendedNodePtr
  19. #define ExtendedNodePtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for gfxnodes.h
  23. */
  24.     
  25. #ifndef EXEC_NODES_H
  26. #include <exec/nodes.h>
  27. #endif
  28.  
  29.  
  30. STRUCT  ExtendedNode     
  31. NodePtr  xln_Succ 
  32. NodePtr  xln_Pred 
  33. BYTE    xln_Type 
  34. BYTE    xln_Pri 
  35. ADDRESS   xln_Name 
  36. BYTE    xln_Subsystem 
  37. BYTE    xln_Subtype 
  38. LONGINT    xln_Library 
  39. ADDRESS    xln_Init
  40. END STRUCT 
  41.  
  42. #define SS_GRAPHICS &H02
  43.  
  44. #define VIEW_EXTRA_TYPE     1
  45. #define VIEWPORT_EXTRA_TYPE 2
  46. #define SPECIAL_MONITOR_TYPE    3
  47. #define MONITOR_SPEC_TYPE   4
  48.  
  49. #endif  /* GRAPHICS_GFXNODES_H */
  50.