summaryrefslogtreecommitdiffstats
path: root/gst/librfb/rfbcontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/librfb/rfbcontext.h')
-rw-r--r--gst/librfb/rfbcontext.h29
1 files changed, 13 insertions, 16 deletions
diff --git a/gst/librfb/rfbcontext.h b/gst/librfb/rfbcontext.h
index df9ec1df..fb41aa0c 100644
--- a/gst/librfb/rfbcontext.h
+++ b/gst/librfb/rfbcontext.h
@@ -1,41 +1,38 @@
-
#ifndef _LIBRFB_RFBCONTEXT_H_
#define _LIBRFB_RFBCONTEXT_H_
-G_BEGIN_DECLS
-
#include <glib.h>
+G_BEGIN_DECLS
+
typedef struct _RfbContext
{
RfbConnection *connection;
guint8 *buffer1;
- void *buffer1_alloc;
- unsigned int buffer1_len;
+ gpointer buffer1_alloc;
+ guint buffer1_len;
guint8 *buffer2;
- void *buffer2_alloc;
- unsigned int buffer2_len;
+ gpointer buffer2_alloc;
+ guint buffer2_len;
- char *name;
+ gchar *name;
} RfbContext;
typedef struct _RfbRect
{
RfbContext *context;
- unsigned int x_pos;
- unsigned int y_pos;
- unsigned int width;
- unsigned int height;
- unsigned int encoding_type;
+ guint x_pos;
+ guint y_pos;
+ guint width;
+ guint height;
+ guint encoding_type;
- char *data;
+ gchar *data;
} RfbRect;
-
-
G_END_DECLS
#endif