summaryrefslogtreecommitdiffstats
path: root/config.tests/x11/xrandr/xrandr.cpp
blob: cd61c2d814f89544b60d7880500fe05517a5c048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>

#if RANDR_MAJOR != 1 || RANDR_MINOR < 1
#  error "Requried Xrandr version 1.1 not found."
#endif

int main(int, char **)
{
    XRRScreenSize *size;
    size = 0;
    return 0;
}