~ubuntu-branches/debian/lenny/italc/lenny

« back to all changes in this revision

Viewing changes to ica/x11/x11vnc/scrollevent_t.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20080617134654-2y5m7ki93r5c1ysf
Tags: upstream-1.0.9~rc3
ImportĀ upstreamĀ versionĀ 1.0.9~rc3

Show diffs side-by-side

added added

removed removed

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