spmenu/libs/x11/lib.h

24 lines
441 B
C
Raw Normal View History

2023-08-18 20:26:40 +02:00
#ifndef LIB_H
#define LIB_H
2023-05-23 22:14:24 +02:00
/* See LICENSE file for copyright and license details. */
// include libraries
#include <X11/XKBlib.h>
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/keysym.h>
#include <X11/Xutil.h>
#include <X11/Xproto.h>
#include <X11/extensions/Xrender.h>
// include xinerama
2023-08-07 06:37:38 +02:00
#if XINERAMA
2023-05-23 22:14:24 +02:00
#include <X11/extensions/Xinerama.h>
#endif
// include xresources
2023-08-07 06:37:38 +02:00
#if XRESOURCES
2023-05-23 22:14:24 +02:00
#include <X11/Xresource.h>
#endif
2023-08-18 20:26:40 +02:00
#endif