Currently, the X11 event loop uses an std::map to connect X11 window handles to WindowMeta data. This map needs to be replaced either by a custom map structure or by associating user data with each window instance (like Win32 is able to to). The core code is to use no STL at all.
Currently, the X11 event loop uses an
std::map
to connect X11 window handles toWindowMeta
data. This map needs to be replaced either by a custom map structure or by associating user data with each window instance (like Win32 is able to to). The core code is to use no STL at all.