mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-05-21 16:58:13 +02:00
Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no longer ignores *.h files, but complains when they reference undefined typedefs or macros. Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
20 lines
272 B
C
20 lines
272 B
C
|
|
#ifndef _KEY_H_
|
|
#define _KEY_H_
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xresource.h>
|
|
|
|
#ifndef NEEDKTABLE
|
|
extern const unsigned char _XkeyTable[];
|
|
#endif
|
|
|
|
extern int
|
|
_XKeyInitialize(
|
|
Display *dpy);
|
|
|
|
extern XrmDatabase
|
|
_XInitKeysymDB(
|
|
void);
|
|
|
|
#endif /* _KEY_H_ */
|