blob: ab4c216707d7d7f79f7e62b55b5fc8a0a68bf656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _X11VNC_XINERAMA_H
#define _X11VNC_XINERAMA_H
/* -- xinerama.h -- */
#include "blackout_t.h"
extern blackout_t blackr[];
extern tile_blackout_t *tile_blackout;
extern int blackouts;
extern void initialize_blackouts_and_xinerama(void);
extern void push_sleep(int n);
extern void push_black_screen(int n);
extern void refresh_screen(int push);
extern void zero_fb(int x1, int y1, int x2, int y2);
#endif /* _X11VNC_XINERAMA_H */
|