mirror of https://github.com/mpv-player/mpv
9 lines
151 B
C
9 lines
151 B
C
|
#include <X11/Xlib.h>
|
||
|
#include <X11/extensions/xf86vmode.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
XF86VidModeQueryExtension(0, 0, 0);
|
||
|
return 0;
|
||
|
}
|