diff options
| author | jsorg71 <jsorg71> | 2005-08-20 22:58:51 +0000 |
|---|---|---|
| committer | jsorg71 <jsorg71> | 2005-08-20 22:58:51 +0000 |
| commit | 1881c8b1b847ef0de1c42f635ee9e10b99b5863e (patch) | |
| tree | 7154a7f7174836d97d75216897332b30be45dfce | |
| parent | a4e3a5fd60f1f935fe1dfbdf24bea4b53a330408 (diff) | |
| download | xrdp-proprietary-1881c8b1b847ef0de1c42f635ee9e10b99b5863e.tar.gz xrdp-proprietary-1881c8b1b847ef0de1c42f635ee9e10b99b5863e.zip | |
added param1 to paint_rect
| -rw-r--r-- | vnc/vnc.c | 2 | ||||
| -rw-r--r-- | vnc/vnc.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -525,7 +525,7 @@ lib_framebuffer_update(struct vnc* v) error = lib_recv(v, data, need_size); if (error == 0) { - error = v->server_paint_rect(v, x, y, cx, cy, data); + error = v->server_paint_rect(v, x, y, cx, cy, data, cx, cy, 0, 0); } } else if (encoding == 1) /* copy rect */ @@ -44,7 +44,7 @@ struct vnc int (*server_screen_blt)(struct vnc* v, int x, int y, int cx, int cy, int srcx, int srcy); int (*server_paint_rect)(struct vnc* v, int x, int y, int cx, int cy, - char* data); + char* data, int width, int height, int srcx, int srcy); int (*server_set_cursor)(struct vnc* v, int x, int y, char* data, char* mask); int (*server_palette)(struct vnc* v, int* palette); int (*server_msg)(struct vnc* v, char* msg, int code); |
