diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2024-11-11 09:26:23 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2024-11-11 09:26:23 +0000 |
commit | e2bab60de786a50dd46000a018b354196085b6a5 (patch) | |
tree | 6d930dcf9ea0e9a224991ffa87bb983110181fad /lib/libXcursor/src/xcursorint.h | |
parent | 61309484b22ee2bad0cdda536c0e40466b8c7bec (diff) |
update to libXcursor 1.2.3
Diffstat (limited to 'lib/libXcursor/src/xcursorint.h')
-rw-r--r-- | lib/libXcursor/src/xcursorint.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/libXcursor/src/xcursorint.h b/lib/libXcursor/src/xcursorint.h index ebc8ee60d..5fca76efb 100644 --- a/lib/libXcursor/src/xcursorint.h +++ b/lib/libXcursor/src/xcursorint.h @@ -1,4 +1,5 @@ /* + * Copyright © 2024 Thomas E. Dickey * Copyright © 2002 Keith Packard * * Permission to use, copy, modify, distribute, and sell this software and its @@ -86,6 +87,7 @@ typedef struct _XcursorDisplayInfo { XExtCodes *codes; XcursorBool has_render_cursor; XcursorBool has_anim_cursor; + XcursorBool resized_cursors; XcursorBool theme_core; int size; XcursorFontInfo *fonts; @@ -110,4 +112,49 @@ _XcursorCreateGlyphCursor(Display *dpy, Cursor _XcursorCreateFontCursor (Display *dpy, unsigned int shape); +/* provide for XCURSOR_RESIZED */ +XcursorImage * +_XcursorFileLoadImage (FILE *file, int size, XcursorBool resize); + +XcursorImages * +_XcursorXcFileLoadImages (XcursorFile *file, int size, XcursorBool resize); + +XcursorImages * +_XcursorFileLoadImages (FILE *file, int size, XcursorBool resize); + +XcursorImages * +_XcursorFilenameLoadImages (const char *file, int size, XcursorBool resize); + +XcursorImages * +_XcursorShapeLoadImages (Display *dpy, unsigned int shape); + +#ifdef DEBUG_XCURSOR +void _XcursorTrace(const char *fmt, ...) __attribute__((format(printf,1,2))); +void *_XcursorReturnAddr(void *addr); +int _XcursorReturnCode(int code); +unsigned long _XcursorReturnLong(unsigned long code); +unsigned _XcursorReturnUint(unsigned code); +void _XcursorReturnVoid(void); +#define T_CALLED(func) "called: { " #func +#define T_OPTION(opts) "option: : " #opts +#define T_RETURN(form) "return: } %" #form "\n" +#define enterFunc(params) _XcursorTrace params +#define traceOpts(params) _XcursorTrace params +#define returnAddr(addr) return _XcursorReturnAddr(addr) +#define returnCode(code) return _XcursorReturnCode(code) +#define returnLong(code) return _XcursorReturnLong(code) +#define returnUint(code) return _XcursorReturnUint(code) +#define returnVoid() do { _XcursorReturnVoid(); return; } while (0) +#else +#define enterFunc(params) /* nothing */ +#define traceOpts(params) /* nothing */ +#define returnAddr(addr) return (addr) +#define returnCode(code) return (code) +#define returnLong(code) return (code) +#define returnUint(code) return (code) +#define returnVoid() return +#endif + +#define NonNull(p) ((p) != NULL ? (p) : "<null>") + #endif /* _XCURSORINT_H_ */ |