mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-11 13:49:48 -04:00
34 lines
632 B
C
34 lines
632 B
C
/* $XFree86: xc/lib/X11/Xintatom.h,v 1.1 2001/08/18 02:41:28 dawes Exp $ */
|
|
|
|
#ifndef _XINTATOM_H_
|
|
#define _XINTATOM_H_ 1
|
|
|
|
#include <X11/Xfuncproto.h>
|
|
|
|
/* IntAtom.c */
|
|
|
|
#define TABLESIZE 64
|
|
|
|
typedef struct _Entry {
|
|
unsigned long sig;
|
|
Atom atom;
|
|
} EntryRec, *Entry;
|
|
|
|
#define RESERVED ((Entry) 1)
|
|
|
|
#define EntryName(e) ((char *)(e+1))
|
|
|
|
typedef struct _XDisplayAtoms {
|
|
Entry table[TABLESIZE];
|
|
} AtomTable;
|
|
|
|
_XFUNCPROTOBEGIN
|
|
|
|
extern void _XUpdateAtomCache(Display *dpy, const char *name, Atom atom,
|
|
unsigned long sig, int idx, int n);
|
|
extern void _XFreeAtomTable(Display *dpy);
|
|
|
|
_XFUNCPROTOEND
|
|
|
|
#endif /* _XINTATOM_H_ */
|