30 lines
732 B
C
30 lines
732 B
C
|
/*****************************************************************************\
|
||
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
||
|
This file is licensed under the Snes9x License.
|
||
|
For further information, consult the LICENSE file in the root directory.
|
||
|
\*****************************************************************************/
|
||
|
|
||
|
#ifndef __GTK_COMPAT_H
|
||
|
#define __GTK_COMPAT_H
|
||
|
|
||
|
#include <gtkmm.h>
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
#include <gdk/gdk.h>
|
||
|
#include <gdk/gdkkeysyms.h>
|
||
|
#include <gdk/gdkkeysyms-compat.h>
|
||
|
|
||
|
#ifndef USE_WAYLAND
|
||
|
#undef GDK_WINDOWING_WAYLAND
|
||
|
#endif
|
||
|
|
||
|
#ifdef GDK_WINDOWING_WAYLAND
|
||
|
#include <gdk/gdkwayland.h>
|
||
|
#endif
|
||
|
|
||
|
#ifdef GDK_WINDOWING_X11
|
||
|
#include <gdk/gdkx.h>
|
||
|
#endif
|
||
|
|
||
|
#endif
|