wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

x11.c (293B)


      1 /* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
      2  * See LICENSE file for license details.
      3  */
      4 #include "x11.h"
      5 
      6 const Point	ZP = {0, 0};
      7 const Rectangle	ZR = {{0, 0}, {0, 0}};
      8 
      9 const Window	_pointerwin = { .xid = PointerRoot };
     10 Window*		const pointerwin = (Window*)&_pointerwin;
     11 
     12