Added cursor change method

This commit is contained in:
Jack Andersen
2015-11-29 14:20:20 -10:00
parent c0b93f39d8
commit 5843840411
6 changed files with 114 additions and 21 deletions

20
lib/x11/XlibCommon.hpp Normal file
View File

@@ -0,0 +1,20 @@
#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;
Cursor m_wait;
};
extern XlibCursors X_CURSORS;
}
#endif // BOO_XLIBCOMMON_HPP