mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
15 lines
210 B
C
15 lines
210 B
C
|
#include "x11-inc.h"
|
||
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <draw.h>
|
||
|
#include <memdraw.h>
|
||
|
#include "x11-memdraw.h"
|
||
|
|
||
|
void
|
||
|
drawtopwindow(void)
|
||
|
{
|
||
|
XRaiseWindow(_x.display, _x.drawable);
|
||
|
XFlush(_x.display);
|
||
|
}
|
||
|
|