mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
30 lines
338 B
C
30 lines
338 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
#include <draw.h>
|
|
|
|
int _wantfocuschanges;
|
|
|
|
void
|
|
drawtopwindow(void)
|
|
{
|
|
_displaytop(display);
|
|
}
|
|
|
|
int
|
|
drawsetlabel(char *label)
|
|
{
|
|
return _displaylabel(display, label);
|
|
}
|
|
|
|
void
|
|
bouncemouse(Mouse *m)
|
|
{
|
|
_displaybouncemouse(display, m);
|
|
}
|
|
|
|
void
|
|
drawresizewindow(Rectangle r)
|
|
{
|
|
_displayresize(display, r);
|
|
}
|
|
|