boo/lib/x11/XlibCommon.hpp

23 lines
310 B
C++
Raw Normal View History

2015-11-30 00:20:20 +00:00
#ifndef BOO_XLIBCOMMON_HPP
#define BOO_XLIBCOMMON_HPP
#include <X11/Xlib.h>
namespace boo
{
struct XlibCursors
{
Cursor m_pointer;
Cursor m_hArrow;
Cursor m_vArrow;
2015-12-20 04:39:48 +00:00
Cursor m_ibeam;
2016-01-10 06:42:00 +00:00
Cursor m_crosshairs;
2015-11-30 00:20:20 +00:00
Cursor m_wait;
};
extern XlibCursors X_CURSORS;
}
#endif // BOO_XLIBCOMMON_HPP