#include #include #include #include #include #include #include #include "private.h" WL_EXPORT int XSetSizeHints(Display *dpy, Window w, XSizeHints *hints, Atom property) { STUB(); return 0; } WL_EXPORT int XSetWMHints(Display *dpy, Window w, XWMHints *wmhints) { STUB(); return 0; } WL_EXPORT int XSetZoomHints(Display *dpy, Window w, XSizeHints *zhints) { STUB(); return 0; } WL_EXPORT int XSetNormalHints(Display *dpy, Window w, XSizeHints *hints) { STUB(); return 0; } WL_EXPORT int XSetIconSizes(Display *dpy, Window w, XIconSize *list, int count) { STUB(); return 0; } WL_EXPORT int XSetCommand(Display *dpy, Window w, char **argv, int argc) { STUB(); return 0; } WL_EXPORT int XSetStandardProperties(Display *dpy, Window w, const char *name, const char *icon_string, Pixmap icon_pixmap, char **argv, int argc, XSizeHints *hints) { STUB(); return 0; } WL_EXPORT int XSetTransientForHint(Display *dpy, Window w, Window propWindow) { STUB(); return 0; } WL_EXPORT int XSetClassHint(Display *dpy, Window w, XClassHint *classhint) { STUB(); return 0; } WL_EXPORT Status XSetWMProtocols(Display *dpy, Window w, Atom *protocols, int count) { Atom prop; prop = XInternAtom(dpy, "WM_PROTOCOLS", False); if (prop == None) return False; XChangeProperty(dpy, w, prop, XA_ATOM, 32, PropModeReplace, (unsigned char *) protocols, count); return True; }