diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 13:18:21 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 13:18:21 +0500 |
| commit | 260dc2c8828c70b0e147ea394f38e9ee6dc69ee3 (patch) | |
| tree | ba6e424280a50b70b0a1819368674904556fa459 /xlibs/include/X11/ImUtil.h | |
| parent | 51cf34eb8fdef936328c565276615880997e28bb (diff) | |
wip
Diffstat (limited to 'xlibs/include/X11/ImUtil.h')
| -rw-r--r-- | xlibs/include/X11/ImUtil.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/xlibs/include/X11/ImUtil.h b/xlibs/include/X11/ImUtil.h new file mode 100644 index 000000000..779e1dc15 --- /dev/null +++ b/xlibs/include/X11/ImUtil.h @@ -0,0 +1,30 @@ + +#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, + XImage *dstimg, + int x, + int y); + +extern int +_XReverse_Bytes( + unsigned char *bpt, + int nb); +extern void +_XInitImageFuncPtrs( + XImage *image); + +#endif /* _X11_IMUTIL_H_ */ |
