Two swsusp patches:
[linux-flexiantxendom0-3.2.10.git] / arch / um / include / x11_user.h
1 /* x11_user */
2
3 struct x11_window;
4 struct x11_kerndata;
5
6 struct x11_window *x11_open(int width, int height);
7 int x11_has_data(struct x11_window *win, struct x11_kerndata *kd);
8 int x11_blit_fb(struct x11_window *win, int x1, int x2, int y1, int y2);
9
10 int x11_get_fd(struct x11_window *win);
11 struct fb_fix_screeninfo* x11_get_fix(struct x11_window *win);
12 struct fb_var_screeninfo* x11_get_var(struct x11_window *win);
13 void* x11_get_fbmem(struct x11_window *win);
14