1
0
Fork 0
spectre/source/Platform/Unix/X11SharedDisplay.h

18 lines
349 B
C++

#ifndef SPECTRE_PLATFORM_UNIX_X11SHAREDDISPLAY_H
#define SPECTRE_PLATFORM_UNIX_X11SHAREDDISPLAY_H
#include <string>
#include <X11/Xlib.h>
namespace sp {
::Display* XGetDisplay();
void XReleaseDisplay();
Atom getAtom(const std::string& name, bool onlyIfExists = false);
} // namespace sp
#endif /* SPECTRE_PLATFORM_UNIX_X11SHAREDDISPLAY_H */