<!doctype html>
<html>
 <head> 
  <meta charset="UTF-8"> 
 </head>
 <body>
  <div>
   Hey there!
  </div>
  <div>
   <br>
  </div>
  <div>
   Although documentation is, to some extend, non-existent, I am trying to develop a library, which uses xcb for linux targets. Additionally I am planning to write an article providing some info on the usage of xcb.
  </div>
  <div>
   <br>
  </div>
  <div>
   So, I am trying to receive input events via the extension 'XInput'. From what I've gathered, I need check whether XInput is available at all and whether the appropriate version is present.
  </div>
  <div>
   <br>
  </div>
  <div>
   After that, I need to select events by calling `xcb_input_xi_select_events`, which should be enough to receive any XInput event.
  </div>
  <div>
   <br>
  </div>
  <div>
   The problem is, that in my event loop, the event `XCB_GE_GENERIC` seems to never be propagated.
  </div>
  <div>
   <br>
  </div>
  <div>
   What am I missing?
  </div>
  <div>
   <br>
  </div>
  <div>
   Best regards
  </div>
  <div>
   Julian
   <br>
   <br>P.S.: It's my first time using a mailing list and I hope this is the right place for my question.
  </div> 
 </body>
</html>