From 43e388b7e5e6bea5c79a462afc24edbf91de91fd Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sat, 8 Feb 2014 21:48:44 -0800 Subject: remove some warning, move gethostname to os_calls --- xrdp/xrdp.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 172d417a..e04dea5f 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -108,6 +108,8 @@ xrdp_wm_send_bitmap(struct xrdp_wm* self, struct xrdp_bitmap* bitmap, int x, int y, int cx, int cy); int APP_CC xrdp_wm_set_pointer(struct xrdp_wm* self, int cache_idx); +unsigned int APP_CC +xrdp_wm_htoi (const char *ptr); int APP_CC xrdp_wm_set_focused(struct xrdp_wm* self, struct xrdp_bitmap* wnd); int APP_CC @@ -349,6 +351,8 @@ get_keymaps(int keylayout, struct xrdp_keymap* keymap); /* xrdp_login_wnd.c */ int APP_CC xrdp_login_wnd_create(struct xrdp_wm* self); +int APP_CC +load_xrdp_config(struct xrdp_config *config); /* xrdp_bitmap_compress.c */ int APP_CC -- cgit v1.2.1 From 8cd57e07102a048d1e4b8ae4228a4cbdde88d509 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Tue, 18 Feb 2014 12:10:05 -0800 Subject: added server_paint_rects --- xrdp/xrdp.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index e04dea5f..0897879f 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -402,6 +402,10 @@ server_composite(struct xrdp_mod* mod, int srcidx, int srcformat, int srcwidth, int srcx, int srcy, int mskx, int msky, int dstx, int dsty, int width, int height, int dstformat); int DEFAULT_CC +server_paint_rects(struct xrdp_mod* mod, int num_drects, short *drects, + int num_crects, short *crects, + char *data, int width, int height, int flags); +int DEFAULT_CC server_set_pointer(struct xrdp_mod* mod, int x, int y, char* data, char* mask); int DEFAULT_CC -- cgit v1.2.1 From 76a090196406fbd8a5a3bda1d90fd6e9699b2799 Mon Sep 17 00:00:00 2001 From: Laxmikant Rashinkar Date: Sun, 23 Feb 2014 18:03:31 -0800 Subject: o --enable-load_pulse_modules changed to --enable-loadpulsemodules o color entries in xrdp.ini file are now specfied using RGB format only o login screen now works with pixel depth of 8, 15, 16 and 24 bits --- xrdp/xrdp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index e04dea5f..d0b970aa 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -352,7 +352,7 @@ get_keymaps(int keylayout, struct xrdp_keymap* keymap); int APP_CC xrdp_login_wnd_create(struct xrdp_wm* self); int APP_CC -load_xrdp_config(struct xrdp_config *config); +load_xrdp_config(struct xrdp_config *config, int bpp); /* xrdp_bitmap_compress.c */ int APP_CC -- cgit v1.2.1