Missing header changes.

This commit is contained in:
David Reveman 2008-06-02 22:52:49 -04:00
parent c46c644e30
commit ccaf6779fe

View file

@ -83,6 +83,11 @@ typedef enum {
PosRelative PosRelative
} PositionType; } PositionType;
typedef struct _DMXIgnore {
struct _DMXIgnore *next;
unsigned long sequence;
} DMXIgnore;
/** Provide the typedef globally, but keep the contents opaque outside /** Provide the typedef globally, but keep the contents opaque outside
* of the input routines. \see dmxinput.h */ * of the input routines. \see dmxinput.h */
typedef struct _DMXInputInfo DMXInputInfo; typedef struct _DMXInputInfo DMXInputInfo;
@ -195,6 +200,9 @@ typedef struct _DMXScreenInfo {
DMXStatInfo *stat; /**< Statistics about XSync */ DMXStatInfo *stat; /**< Statistics about XSync */
Bool needsSync; /**< True if an XSync is pending */ Bool needsSync; /**< True if an XSync is pending */
DMXIgnore *ignoreHead;
DMXIgnore **ignoreTail;
#ifdef GLXEXT #ifdef GLXEXT
/** Visual information for glxProxy */ /** Visual information for glxProxy */
int numGlxVisuals; int numGlxVisuals;