1
2#ifndef _X11_IMUTIL_H_
3#define _X11_IMUTIL_H_
4
5extern int
6_XGetScanlinePad(
7    Display *dpy,
8    int depth);
9
10extern int
11_XGetBitsPerPixel(
12 Display *dpy,
13 int depth);
14
15extern int
16_XSetImage(
17    XImage *srcimg,
18    XImage *dstimg,
19    int x,
20    int y);
21
22extern int
23_XReverse_Bytes(
24    unsigned char *bpt,
25    int nb);
26extern void
27_XInitImageFuncPtrs(
28    XImage *image);
29
30#endif /* _X11_IMUTIL_H_ */
31