diff options
Diffstat (limited to 'x11vnc/blackout_t.h')
-rw-r--r-- | x11vnc/blackout_t.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/x11vnc/blackout_t.h b/x11vnc/blackout_t.h new file mode 100644 index 0000000..cac8bac --- /dev/null +++ b/x11vnc/blackout_t.h @@ -0,0 +1,17 @@ +#ifndef _X11VNC_BLACKOUT_T_H +#define _X11VNC_BLACKOUT_T_H + +/* -- blackout_t.h -- */ + +typedef struct bout { + int x1, y1, x2, y2; +} blackout_t; + +#define BO_MAX 32 +typedef struct tbout { + blackout_t bo[BO_MAX]; /* hardwired max rectangles. */ + int cover; + int count; +} tile_blackout_t; + +#endif /* _X11VNC_BLACKOUT_T_H */ |