Xintatom.h 584 Bytes
Newer Older
1 2 3 4

#ifndef _XINTATOM_H_
#define _XINTATOM_H_ 1

5
#include <nx-X11/Xlib.h>
6
#include <nx-X11/Xfuncproto.h>
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 33

/* 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_ */