summaryrefslogtreecommitdiffstats
path: root/rfb/rfbclient.h
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2013-01-25 21:11:01 +0100
committerChristian Beier <dontmind@freeshell.org>2013-01-25 21:11:01 +0100
commit38c181a2d565cb2ce8b845243300f9c5555b5991 (patch)
tree28af9d6efbfabf9ae7492a1fae0903fef3321b9f /rfb/rfbclient.h
parentd891478ec985660c03f95cffda0e6a1ad4ba350c (diff)
downloadlibtdevnc-38c181a2d565cb2ce8b845243300f9c5555b5991.tar.gz
libtdevnc-38c181a2d565cb2ce8b845243300f9c5555b5991.zip
Fix ABI compatibility issue.
Diffstat (limited to 'rfb/rfbclient.h')
-rw-r--r--rfb/rfbclient.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h
index 07e5063..9ac3c37 100644
--- a/rfb/rfbclient.h
+++ b/rfb/rfbclient.h
@@ -175,7 +175,6 @@ typedef void (*GotCopyRectProc)(struct _rfbClient* client, int src_x, int src_y,
typedef struct _rfbClient {
uint8_t* frameBuffer;
- unsigned long outputWindow; /* Output Window ID. When set, client application enables libvncclient to perform direct rendering in its window */
int width, height;
int endianTest;
@@ -347,6 +346,10 @@ typedef struct _rfbClient {
int listen6Sock;
char* listen6Address;
int listen6Port;
+
+ /* Output Window ID. When set, client application enables libvncclient to perform direct rendering in its window */
+ unsigned long outputWindow;
+
} rfbClient;
/* cursor.c */