mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-07 00:50:13 +01:00
Missing header changes.
This commit is contained in:
parent
c46c644e30
commit
ccaf6779fe
1 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue