mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 16:48:21 +00:00
15 lines
242 B
C
15 lines
242 B
C
|
#include <X11/Xlib.h>
|
||
|
#include <stdbool.h>
|
||
|
#include "debug.h"
|
||
|
|
||
|
int XSync(Display * display, Bool discard)
|
||
|
{
|
||
|
static bool doneInfo = false;
|
||
|
if (!doneInfo)
|
||
|
{
|
||
|
DEBUG_INFO("XSync Override Enabled");
|
||
|
doneInfo = true;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|