This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/modules/xlib/xlib.hpp
2020-08-04 13:13:01 -04:00

21 lines
327 B
C++

/*
*
*
*
*
*/
#include <X11/Xlib.h> // X11 lib for interacting with our session and other useful things to do with windows and the display manager
namespace xlib {
extern Display* xAppDisplay;
extern Window xAppWindow;
// Check if we have display/window.
bool GetXDisplay();
bool GetXWindow();
} // namespace xlib