source: trunk/config.tests/x11/xfixes/xfixes.cpp@ 13

Last change on this file since 13 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 238 bytes
Line 
1#include <X11/Xlib.h>
2#include <X11/extensions/Xfixes.h>
3
4#if XFIXES_MAJOR < 2
5# error "Required Xfixes version 2.0 not found."
6#endif
7
8int main(int, char **)
9{
10 XFixesSelectionNotifyEvent event;
11 event.type = 0;
12 return 0;
13}
14
Note: See TracBrowser for help on using the repository browser.