summaryrefslogtreecommitdiffstats
path: root/vnc
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-06-28 03:11:35 +0000
committerjsorg71 <jsorg71>2005-06-28 03:11:35 +0000
commit992dbfa7b3fa568ee480aa3fe3242084d33c518f (patch)
treec46af888c75e214fa2c1f18606c4d21ef83526e5 /vnc
parent41df89c7f2da57650948967a78afa352a3dfc4b6 (diff)
downloadxrdp-proprietary-992dbfa7b3fa568ee480aa3fe3242084d33c518f.tar.gz
xrdp-proprietary-992dbfa7b3fa568ee480aa3fe3242084d33c518f.zip
moved a bunch of files around
Diffstat (limited to 'vnc')
-rw-r--r--vnc/vnc.c3
-rw-r--r--vnc/vnc.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/vnc/vnc.c b/vnc/vnc.c
index 63c1e2f2..1e895b81 100644
--- a/vnc/vnc.c
+++ b/vnc/vnc.c
@@ -121,7 +121,8 @@ int lib_send(struct vnc* v, char* data, int len)
}
/******************************************************************************/
-int lib_mod_event(struct vnc* v, int msg, int param1, int param2)
+int lib_mod_event(struct vnc* v, int msg, long param1, long param2,
+ long param3, long param4)
{
struct stream* s;
int key;
diff --git a/vnc/vnc.h b/vnc/vnc.h
index e7ea0ba1..53c9beff 100644
--- a/vnc/vnc.h
+++ b/vnc/vnc.h
@@ -32,7 +32,8 @@ struct vnc
/* client functions */
int (*mod_start)(struct vnc* v, int w, int h, int bpp);
int (*mod_connect)(struct vnc* v);
- int (*mod_event)(struct vnc* v, int msg, int param1, int param2);
+ int (*mod_event)(struct vnc* v, int msg, long param1, long param2,
+ long param3, long param4);
int (*mod_signal)(struct vnc* v);
int (*mod_end)(struct vnc* v);
int (*mod_set_param)(struct vnc* v, char* name, char* value);