diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2010-11-18 21:05:32 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2010-11-18 21:05:32 -0800 |
commit | 4f88bf83c10900d9fdfd79407535bd6991f8a596 (patch) | |
tree | 52aface00ad32606e2dd955e53977db70e59812a /vnc | |
parent | 96c1c4473aac3b0c8f97bf04b4fd4c59e6a4db0a (diff) | |
download | xrdp-proprietary-4f88bf83c10900d9fdfd79407535bd6991f8a596.tar.gz xrdp-proprietary-4f88bf83c10900d9fdfd79407535bd6991f8a596.zip |
fixes for bell function
Diffstat (limited to 'vnc')
-rw-r--r-- | vnc/vnc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,7 +27,7 @@ #include "d3des.h" #include "defines.h" -#define CURRENT_MOD_VER 1 +#define CURRENT_MOD_VER 2 struct vnc { @@ -50,7 +50,6 @@ struct vnc /* server functions */ int (*server_begin_update)(struct vnc* v); int (*server_end_update)(struct vnc* v); - int (*server_bell_trigger)(struct vnc* v); int (*server_fill_rect)(struct vnc* v, int x, int y, int cx, int cy); int (*server_screen_blt)(struct vnc* v, int x, int y, int cx, int cy, int srcx, int srcy); @@ -88,7 +87,8 @@ struct vnc int (*server_send_to_channel)(struct vnc* v, int channel_id, char* data, int data_len, int total_data_len, int flags); - long server_dumby[100 - 24]; /* align, 100 minus the number of server + int (*server_bell_trigger)(struct vnc* v); + long server_dumby[100 - 25]; /* align, 100 minus the number of server functions above */ /* common */ long handle; /* pointer to self as long */ |