From ccaf6779fe63a13eef321efd912aadffa681c865 Mon Sep 17 00:00:00 2001 From: David Reveman Date: Mon, 2 Jun 2008 22:52:49 -0400 Subject: [PATCH] Missing header changes. --- hw/dmx/dmx.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hw/dmx/dmx.h b/hw/dmx/dmx.h index 80908b8d0..ca3c2b926 100644 --- a/hw/dmx/dmx.h +++ b/hw/dmx/dmx.h @@ -83,6 +83,11 @@ typedef enum { PosRelative } PositionType; +typedef struct _DMXIgnore { + struct _DMXIgnore *next; + unsigned long sequence; +} DMXIgnore; + /** Provide the typedef globally, but keep the contents opaque outside * of the input routines. \see dmxinput.h */ typedef struct _DMXInputInfo DMXInputInfo; @@ -195,6 +200,9 @@ typedef struct _DMXScreenInfo { DMXStatInfo *stat; /**< Statistics about XSync */ Bool needsSync; /**< True if an XSync is pending */ + DMXIgnore *ignoreHead; + DMXIgnore **ignoreTail; + #ifdef GLXEXT /** Visual information for glxProxy */ int numGlxVisuals;