39 lines
995 B
C
39 lines
995 B
C
/*
|
|
|
|
Copyright 1993 by Davor Matic
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software
|
|
and its documentation for any purpose is hereby granted without fee,
|
|
provided that the above copyright notice appear in all copies and that
|
|
both that copyright notice and this permission notice appear in
|
|
supporting documentation. Davor Matic makes no representations about
|
|
the suitability of this software for any purpose. It is provided "as
|
|
is" without express or implied warranty.
|
|
|
|
*/
|
|
|
|
#ifndef XNESTGC_H
|
|
#define XNESTGC_H
|
|
|
|
#include <X11/Xdefs.h>
|
|
|
|
#include "include/gcstruct.h"
|
|
#include "include/privates.h"
|
|
|
|
typedef struct {
|
|
uint32_t gc;
|
|
} xnestPrivGC;
|
|
|
|
extern DevPrivateKeyRec xnestGCPrivateKeyRec;
|
|
|
|
#define xnestGCPrivateKey (&xnestGCPrivateKeyRec)
|
|
|
|
#define xnestGCPriv(pGC) ((xnestPrivGC *) \
|
|
dixLookupPrivate(&(pGC)->devPrivates, xnestGCPrivateKey))
|
|
|
|
#define xnestGC(pGC) (xnestGCPriv(pGC)->gc)
|
|
|
|
Bool xnestCreateGC(GCPtr pGC);
|
|
|
|
#endif /* XNESTGC_H */
|