]> git.sur5r.net Git - cc65/blobdiff - include/joystick/joy-kernel.h
Harmonized the style of including headers from headers.
[cc65] / include / joystick / joy-kernel.h
index cec2633ab8279dca8a38cef1273c7de3f42fe948..783508247e76daf7267dd8b0b26abdb392eec648 100644 (file)
@@ -52,14 +52,13 @@ typedef struct {
     /* Driver header */
     char                id[3];          /* Contains 0x6a, 0x6f, 0x79 ("joy") */
     unsigned char       version;        /* Interface version */
-    void*                               /* Library reference */
+    void*               libreference;   /* Library reference */
 
     /* Jump vectors. Note that these are not C callable */
     void*               install;        /* INSTALL routine */
     void*               uninstall;      /* UNINSTALL routine */
     void*               count;          /* COUNT routine */
     void*               read;           /* READ routine */
-    void*               irq;            /* IRQ routine */
 
 } joy_drv_header;