home *** CD-ROM | disk | FTP | other *** search
- {$if not def GRAPHICS_GFXNODES_H} CONST GRAPHICS_GFXNODES_H=0;
-
- { *********************************************************************
- ** KickPascal-Include-Datei "graphics/gfxnodes.h" zu Kickstart 3.0 **
- ********************************************************************* }
-
- TYPE p_ExtendedNode = ^ExtendedNode;
-
- {$if not def EXEC_NODES_H;incl "exec/nodes.h";endif}
-
- TYPE ExtendedNode = RECORD
- xln_Succ : p_Node;
- xln_Pred : p_Node;
- xln_Type : Byte;
- xln_Pri : Short;
- ln_Name : Str;
- xln_Subsystem : Byte;
- xln_Subtype : Byte;
- xln_Library : LongInt;
- xln_Init : Ptr;
- END;
-
- CONST SS_GRAPHICS = $02;
-
- CONST
- VIEW_EXTRA_TYPE = 1;
- VIEWPORT_EXTRA_TYPE = 2;
- SPECIAL_MONITOR_TYPE = 3;
- MONITOR_SPEC_TYPE = 4;
-
- {$endif}
-