Commit 38c181a2 authored by Christian Beier's avatar Christian Beier

Fix ABI compatibility issue.

parent d891478e
...@@ -175,7 +175,6 @@ typedef void (*GotCopyRectProc)(struct _rfbClient* client, int src_x, int src_y, ...@@ -175,7 +175,6 @@ typedef void (*GotCopyRectProc)(struct _rfbClient* client, int src_x, int src_y,
typedef struct _rfbClient { typedef struct _rfbClient {
uint8_t* frameBuffer; 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 width, height;
int endianTest; int endianTest;
...@@ -347,6 +346,10 @@ typedef struct _rfbClient { ...@@ -347,6 +346,10 @@ typedef struct _rfbClient {
int listen6Sock; int listen6Sock;
char* listen6Address; char* listen6Address;
int listen6Port; int listen6Port;
/* Output Window ID. When set, client application enables libvncclient to perform direct rendering in its window */
unsigned long outputWindow;
} rfbClient; } rfbClient;
/* cursor.c */ /* cursor.c */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment