mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-04-13 18:50:38 +02:00
This addresses a build failure which can result from <X11/Xlocale.h> and <xlocale.h> being included in the same code since they both used the same _XLOCALE_H_ protection. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
30 lines
459 B
C
30 lines
459 B
C
|
|
#ifndef _X11_IMUTIL_H_
|
|
#define _X11_IMUTIL_H_
|
|
|
|
extern int
|
|
_XGetScanlinePad(
|
|
Display *dpy,
|
|
int depth);
|
|
|
|
extern int
|
|
_XGetBitsPerPixel(
|
|
Display *dpy,
|
|
int depth);
|
|
|
|
extern int
|
|
_XSetImage(
|
|
XImage *srcimg,
|
|
register XImage *dstimg,
|
|
register int x,
|
|
register int y);
|
|
|
|
extern int
|
|
_XReverse_Bytes(
|
|
register unsigned char *bpt,
|
|
register int nb);
|
|
extern void
|
|
_XInitImageFuncPtrs(
|
|
register XImage *image);
|
|
|
|
#endif /* _X11_IMUTIL_H_ */
|