mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-24 20:55:49 +00:00
Prepare for array-index based devPrivates.
TODO: static indices can be made just an int; some indices can be combined.
This commit is contained in:
parent
ec7907f8fa
commit
ebea78cdba
78 changed files with 287 additions and 146 deletions
|
|
@ -60,11 +60,14 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
static DevPrivateKey miDbeWindowPrivPrivKey = &miDbeWindowPrivPrivKey;
|
||||
static int miDbeWindowPrivPrivKeyIndex;
|
||||
static DevPrivateKey miDbeWindowPrivPrivKey = &miDbeWindowPrivPrivKeyIndex;
|
||||
static RESTYPE dbeDrawableResType;
|
||||
static RESTYPE dbeWindowPrivResType;
|
||||
static DevPrivateKey dbeScreenPrivKey = &dbeScreenPrivKey;
|
||||
static DevPrivateKey dbeWindowPrivKey = &dbeWindowPrivKey;
|
||||
static int dbeScreenPrivKeyIndex;
|
||||
static DevPrivateKey dbeScreenPrivKey = &dbeScreenPrivKeyIndex;
|
||||
static int dbeWindowPrivKeyIndex;
|
||||
static DevPrivateKey dbeWindowPrivKey = &dbeWindowPrivKeyIndex;
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
|
|
|
|||
Loading…
Reference in a new issue