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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080617134654-cl0gi4u524cv1ici
Tags: 1:1.0.9~rc3-1
* Package new upstream version
  - upstream ported the code to qt4.4 (Closes: #481974)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _X11VNC_SCAN_H
 
2
#define _X11VNC_SCAN_H
 
3
 
 
4
/* -- scan.h -- */
 
5
 
 
6
extern int nap_ok;
 
7
extern int scanlines[];
 
8
 
 
9
extern void initialize_tiles(void);
 
10
extern void free_tiles(void);
 
11
extern void shm_delete(XShmSegmentInfo *shm);
 
12
extern void shm_clean(XShmSegmentInfo *shm, XImage *xim);
 
13
extern void initialize_polling_images(void);
 
14
extern void scale_rect(double factor, int blend, int interpolate, int Bpp,
 
15
    char *src_fb, int src_bytes_per_line, char *dst_fb, int dst_bytes_per_line,
 
16
    int Nx, int Ny, int nx, int ny, int X1, int Y1, int X2, int Y2, int mark);
 
17
extern void scale_and_mark_rect(int X1, int Y1, int X2, int Y2, int mark);
 
18
extern void mark_rect_as_modified(int x1, int y1, int x2, int y2, int force);
 
19
extern int copy_screen(void);
 
20
extern int copy_snap(void);
 
21
extern void nap_sleep(int ms, int split);
 
22
extern void set_offset(void);
 
23
extern int scan_for_updates(int count_only);
 
24
extern void rotate_curs(char *dst_0, char *src_0, int Dx, int Dy, int Bpp);
 
25
extern void rotate_coords(int x, int y, int *xo, int *yo, int dxi, int dyi);
 
26
extern void rotate_coords_inverse(int x, int y, int *xo, int *yo, int dxi, int dyi);
 
27
 
 
28
#endif /* _X11VNC_SCAN_H */