boo/lib/x11/XlibCommon.hpp

18 lines
244 B
C++
Raw Normal View History

2018-10-07 03:36:44 +00:00
#pragma once
2015-11-30 00:20:20 +00:00
#include <X11/Xlib.h>
2018-12-08 05:17:51 +00:00
namespace boo {
2015-11-30 00:20:20 +00:00
2018-12-08 05:17:51 +00:00
struct XlibCursors {
Cursor m_pointer;
Cursor m_hArrow;
Cursor m_vArrow;
Cursor m_ibeam;
Cursor m_crosshairs;
Cursor m_wait;
2015-11-30 00:20:20 +00:00
};
extern XlibCursors X_CURSORS;
2018-12-08 05:17:51 +00:00
} // namespace boo