2013-12-15 17:30:06 +01:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2013-12-15 17:30:06 +01:00
|
|
|
*
|
|
|
|
* main.c: Initialization, main loop
|
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2013-12-15 17:30:06 +01:00
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
#include <config.h>
|
|
|
|
|
2013-12-15 17:30:06 +01:00
|
|
|
/**
|
|
|
|
* Enable or disable the main X11 event handling function.
|
|
|
|
* This is used by drag_pointer() which has its own, modal event handler, which
|
|
|
|
* takes precedence over the normal event handler.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void main_set_x11_cb(bool enable);
|