summaryrefslogtreecommitdiffstats
path: root/x11vnc/winattr_t.h
blob: cfde0471c2f386d6520429939d46754e19b51838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _X11VNC_WINATTR_T_H
#define _X11VNC_WINATTR_T_H

/* -- winattr_t.h -- */

typedef struct winattr {
	Window win;
	int fetched;
	int valid;
	int x, y;
	int width, height;
	int depth;
	int class;
	int backing_store;
	int map_state;
	int rx, ry;
	double time; 
	double bs_time;
	double su_time;
	double vis_obs_time;
	double vis_unobs_time;
	int bs_x, bs_y, bs_w, bs_h;
	int su_x, su_y, su_w, su_h;
	Window above;
	short vis_state;
	short selectinput;
	short map_cnt;
	short unmap_cnt;
	short vis_cnt;
	short create_cnt;
} winattr_t;

#endif /* _X11VNC_WINATTR_T_H */