home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / graphics / gfxnodes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  693 b   |  39 lines

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