aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/X11/Xintatom.h
blob: f4057798d51352eec170c36f1b5e2967e50ad356 (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 <nx-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_ */