mirror of https://github.com/0intro/wmii
17 lines
296 B
C
17 lines
296 B
C
/*
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
#include <cext.h>
|
|
|
|
#include "blitz.h"
|
|
|
|
void
|
|
blitz_x11_init(Display *dpy)
|
|
{
|
|
__blitz.display = dpy;
|
|
__blitz.screen = DefaultScreen(dpy);
|
|
__blitz.root = DefaultRootWindow(dpy);
|
|
}
|