diff options
author | runge <runge> | 2006-03-03 00:30:16 +0000 |
---|---|---|
committer | runge <runge> | 2006-03-03 00:30:16 +0000 |
commit | b03a920cb996bf61af2d9351d2fe497ea3c0c99e (patch) | |
tree | d8b88ff7a0e19659374f8f4b7d443b33adf4b4cb /x11vnc/8to24.c | |
parent | f38f67e4e9320a3e0b1472b9c4bae86fcedcbd89 (diff) | |
download | libtdevnc-b03a920cb996bf61af2d9351d2fe497ea3c0c99e.tar.gz libtdevnc-b03a920cb996bf61af2d9351d2fe497ea3c0c99e.zip |
x11vnc: more -unixpw mode. -gone popup mode. Change filexfer via -R. Tune SMALL_FOOTPRINT.
Diffstat (limited to 'x11vnc/8to24.c')
-rw-r--r-- | x11vnc/8to24.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/x11vnc/8to24.c b/x11vnc/8to24.c index 88b923c..01d9316 100644 --- a/x11vnc/8to24.c +++ b/x11vnc/8to24.c @@ -12,6 +12,13 @@ void check_for_multivis(void); void bpp8to24(int, int, int, int); void mark_8bpp(int); +#if SKIP_8TO24 +void check_for_multivis(void) {} +void bpp8to24(int x, int y, int z, int t) {} +void mark_8bpp(int x) {} +#else +/* lots... */ + static void set_root_cmap(void); static int check_pointer_in_depth24(void); static void parse_cmap8to24(void); @@ -1962,3 +1969,5 @@ if (db24 > 1) fprintf(stderr, "mark_8bpp: 0x%lx %d %d %d %d\n", windows_8bpp[i]. } } +#endif /* SKIP_8TO24 */ + |