blob: 82dba36e134c71e9d0389bfffa992604be4842e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#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_ */
|