Files
i3/include/main.h
Michael Stapelberg 6f38bb6d5d use setlocale(3) (NetBSD lacks uselocale(3))
I am not making this conditional because we intend to switch to a different JSON
library soon anyway, which will make locale switching unnecessary entirely.

fixes https://github.com/i3/i3/issues/6566
2026-02-06 08:20:11 +01:00

21 lines
460 B
C

/*
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved tiling window manager
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
*
* main.c: Initialization, main loop
*
*/
#pragma once
#include <config.h>
/**
* 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);