mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 20:32:13 +00:00
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;
|
||
|
}
|