diff options
author | ilsimo <ilsimo> | 2007-03-25 13:42:45 +0000 |
---|---|---|
committer | ilsimo <ilsimo> | 2007-03-25 13:42:45 +0000 |
commit | fd8ce33f59f8be0942aa90443085578b937c542b (patch) | |
tree | ff4af82512f32a11dd28c7558c5cfe84c9194029 /xup/xup.h | |
parent | b1eface57f4424638402cbde5051670cb8041d92 (diff) | |
download | xrdp-proprietary-fd8ce33f59f8be0942aa90443085578b937c542b.tar.gz xrdp-proprietary-fd8ce33f59f8be0942aa90443085578b937c542b.zip |
adding libscp to xup
some fixes for vnc mod
Diffstat (limited to 'xup/xup.h')
-rw-r--r-- | xup/xup.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -26,6 +26,8 @@ #include "os_calls.h" #include "defines.h" +#include "../sesman/libscp.h" + struct mod { int size; /* size of this struct */ @@ -38,7 +40,7 @@ struct mod int (*mod_signal)(struct mod* v); int (*mod_end)(struct mod* v); int (*mod_set_param)(struct mod* v, char* name, char* value); - long mod_dumby[100 - 6]; /* align, 100 minus the number of mod + long mod_dumby[100 - 6]; /* align, 100 minus the number of mod functions above */ /* server functions */ int (*server_begin_update)(struct mod* v); @@ -79,7 +81,7 @@ struct mod int (*server_get_channel_id)(struct mod* v, char* name); int (*server_send_to_channel)(struct mod* v, int channel_id, char* data, int data_len); - long server_dumby[100 - 24]; /* align, 100 minus the number of server + long server_dumby[100 - 24]; /* align, 100 minus the number of server functions above */ /* common */ long handle; /* pointer to self as long */ |