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

#if XFIXES_MAJOR < 2
#  error "Required Xfixes version 2.0 not found."
#endif

int main(int, char **)
{
    XFixesSelectionNotifyEvent event;
    event.type = 0;
    return 0; 
}