factor/basis/x11/xinput2/xinput2.factor

18 lines
468 B
Factor
Raw Normal View History

2010-05-21 15:52:22 -04:00
! Copyright (C) 2010 Niklas Waern.
! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.data combinators kernel namespaces
x11 x11.constants x11.xinput2.ffi ;
2010-05-21 15:52:22 -04:00
IN: x11.xinput2
2010-05-21 18:11:00 -04:00
: (xi2-available?) ( display -- ? )
2010-10-20 18:42:53 -04:00
2 0 [ int <ref> ] bi@
2010-05-21 18:11:00 -04:00
XIQueryVersion
{
{ BadRequest [ f ] }
{ Success [ t ] }
[ "Internal Xlib error." throw ]
} case ;
: xi2-available? ( -- ? ) dpy get (xi2-available?) ; inline