diff options
author | Keith Packard <keithp@guitar.keithp.com> | 2006-09-20 20:00:57 -0700 |
---|---|---|
committer | Keith Packard <keithp@guitar.keithp.com> | 2006-09-20 20:00:57 -0700 |
commit | cb1dbb7c2446ddf514ee709fba940cc4e75438a0 (patch) | |
tree | 74b686d23bbbc295674d20f66fe3f45463049b7a /include | |
parent | c712df73eeb0cb84aad6a0bec2be0f480418c217 (diff) |
XRRGetScreenSizeRange returns Status. Lots more requests added.
XRRGetCrtcInfo
XRRSetCrtcConfig
XRRGetScreenSizeRange
XRRSetScreenSize
properties still to do.
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/Xrandr.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/include/X11/extensions/Xrandr.h b/include/X11/extensions/Xrandr.h index 795649a..f56331c 100644 --- a/include/X11/extensions/Xrandr.h +++ b/include/X11/extensions/Xrandr.h @@ -195,7 +195,7 @@ Time XRRTimes (Display *dpy, int screen, Time *config_timestamp); /* Version 1.2 additions */ -void +Status XRRGetScreenSizeRange (Display *dpy, Window window, int *minWidth, int *minHeight, int *maxWidth, int *maxHeight); @@ -322,13 +322,15 @@ void XRRFreeCrtcInfo (XRRCrtcInfo *crtcInfo); Status -XRRSetCrtc (Display *dpy, - XRRScreenResources *resources, - RRCrtc crtc, - RRMode mode, - Rotation rotation, - RROutput *outputs, - int noutputs); +XRRSetCrtcConfig (Display *dpy, + XRRScreenResources *resources, + RRCrtc crtc, + Time timestamp, + int x, int y, + RRMode mode, + Rotation rotation, + RROutput *outputs, + int noutputs); int XRRGetCrtcGammaSize (Display *dpy, RRCrtc crtc); |