xorg-libx11/src/Xresinternal.h
Niveditha Rau 7e30056e78 Make sure internal headers include required headers
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>
2013-05-17 15:27:31 -07:00

18 lines
405 B
C

#ifndef _XRESINTERNAL_H_
#define _XRESINTERNAL_H_
#include <X11/Xlib.h>
#include <X11/Xresource.h>
#include <inttypes.h>
/* type defines */
typedef uint32_t Signature;
/* prototypes */
extern XrmQuark _XrmInternalStringToQuark(
register _Xconst char *name, register int len, register Signature sig,
Bool permstring);
#endif /* _XRESOURCEINTERNAL_H_ */
/* DON'T ADD STUFF AFTER THIS #endif */