1 #ifndef GRAPHICS_GRAPHINT_H
    2 #define GRAPHICS_GRAPHINT_H
    3 
    4 /*
    5 	graphics interrupt definitions
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_NODES_H
   11 # include <exec/nodes.h>
   12 #endif
   13 
   14 #pragma pack(2)
   15 
   16 
   17 struct Isrvstr
   18 {
   19 	struct Node      is_Node;
   20 	struct Isrvstr  *Iptr;
   21 	LONG           (*code)(void);
   22 	LONG           (*ccode) __CLIB_PROTOTYPE((APTR));
   23 	APTR             Carg;
   24 };
   25 
   26 
   27 #pragma pack()
   28 
   29 #endif /* GRAPHICS_GRAPHINT_H */