2010-02-25 01:25:16 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-02-25 01:25:16 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_X11
|
2014-06-16 12:54:00 +04:00
|
|
|
# include <X11/Xlib.h>
|
2019-05-25 13:13:02 +03:00
|
|
|
# include "X11UndefineNone.h" // Unset some macros defined by X.h included by Xlib.h
|
2017-01-13 10:50:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* InstallX11ErrorHandler is not suitable for processes running with GTK3 as
|
|
|
|
* GDK3 will replace the handler. This is still used for the plugin process,
|
|
|
|
* which runs with GTK2.
|
|
|
|
**/
|
2010-02-25 01:25:16 +03:00
|
|
|
void InstallX11ErrorHandler();
|
2017-01-13 10:50:58 +03:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
extern "C" int X11Error(Display* display, XErrorEvent* event);
|
2014-06-16 12:54:00 +04:00
|
|
|
#endif
|