summaryrefslogtreecommitdiffstats
path: root/xup
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2015-07-10 21:57:04 -0700
committerJay Sorg <jay.sorg@gmail.com>2015-07-10 21:57:04 -0700
commit4a553e07af27d99ba1557ffea126a7db2e471dd7 (patch)
treeceb98632804740431d406d33bcbe8f796883281c /xup
parent65de5e971b015b191664865a95c6cbd9d674440c (diff)
downloadxrdp-proprietary-4a553e07af27d99ba1557ffea126a7db2e471dd7.tar.gz
xrdp-proprietary-4a553e07af27d99ba1557ffea126a7db2e471dd7.zip
update the module API
Diffstat (limited to 'xup')
-rw-r--r--xup/xup.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/xup/xup.h b/xup/xup.h
index b7ec142c..1e1b7a38 100644
--- a/xup/xup.h
+++ b/xup/xup.h
@@ -26,7 +26,7 @@
#include "xrdp_client_info.h"
#include "xrdp_rail.h"
-#define CURRENT_MOD_VER 2
+#define CURRENT_MOD_VER 3
struct mod
{
@@ -45,8 +45,8 @@ struct mod
tbus* write_objs, int* wcount, int* timeout);
int (*mod_check_wait_objs)(struct mod* v);
int (*mod_frame_ack)(struct mod* v, int flags, int frame_id);
- tbus mod_dumby[100 - 10]; /* align, 100 minus the number of mod
- functions above */
+ tintptr mod_dumby[100 - 10]; /* align, 100 minus the number of mod
+ functions above */
/* server functions */
int (*server_begin_update)(struct mod* v);
int (*server_end_update)(struct mod* v);
@@ -140,13 +140,13 @@ struct mod
char *data, int width, int height,
int flags, int frame_id);
- tbus server_dumby[100 - 43]; /* align, 100 minus the number of server
- functions above */
+ tintptr server_dumby[100 - 43]; /* align, 100 minus the number of server
+ functions above */
/* common */
- tbus handle; /* pointer to self as long */
- tbus wm;
- tbus painter;
- int sck;
+ tintptr handle; /* pointer to self as long */
+ tintptr wm;
+ tintptr painter;
+ tintptr si;
/* mod data */
int width;
int height;
@@ -156,7 +156,6 @@ struct mod
char password[256];
char ip[256];
char port[256];
- tbus sck_obj;
int shift_state;
struct xrdp_client_info client_info;
int screen_shmem_id;