home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / graphics / gfxnodes.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  672b  |  37 lines

  1. #ifndef    GRAPHICS_GFXNODES_H
  2. #define    GRAPHICS_GFXNODES_H
  3. /*
  4. **    $VER: gfxnodes.h 39.0 (21.08.91)
  5. **    Includes Release 39.108
  6. **
  7. **    graphics extended node definintions
  8. **
  9. **    (C) Copyright 1985-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_NODES_H
  14. #include <exec/nodes.h>
  15. #endif
  16.  
  17. struct    ExtendedNode    {
  18. struct    Node    *xln_Succ;
  19. struct    Node    *xln_Pred;
  20. UBYTE    xln_Type;
  21. BYTE    xln_Pri;
  22. char    *xln_Name;
  23. UBYTE    xln_Subsystem;
  24. UBYTE    xln_Subtype;
  25. LONG    xln_Library;
  26. LONG    (*xln_Init)();
  27. };
  28.  
  29. #define SS_GRAPHICS    0x02
  30.  
  31. #define    VIEW_EXTRA_TYPE        1
  32. #define    VIEWPORT_EXTRA_TYPE    2
  33. #define    SPECIAL_MONITOR_TYPE    3
  34. #define    MONITOR_SPEC_TYPE    4
  35.  
  36. #endif    /* GRAPHICS_GFXNODES_H */
  37.