blob: 4bb1292c58a842fc4f02031a1aeff2be71b5a6cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _X11VNC_SCROLLEVENT_T_H
#define _X11VNC_SCROLLEVENT_T_H
/* -- scrollevent_t.h -- */
typedef struct scroll_event {
Window win, frame;
int dx, dy;
int x, y, w, h;
double t;
int win_x, win_y, win_w, win_h;
int new_x, new_y, new_w, new_h;
} scroll_event_t;
#endif /* _X11VNC_SCROLLEVENT_T_H */
|