mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
aac84ad1c7
Original commit message from CVS: * gst/librfb/d3des.h: * gst/librfb/gstrfbsrc.c: * gst/librfb/gstrfbsrc.h: * gst/librfb/rfbbuffer.h: * gst/librfb/rfbcontext.h: * gst/librfb/rfbdecoder.c: * gst/librfb/rfbdecoder.h: * gst/librfb/rfbutil.h: * gst/librfb/vncauth.h: Added copyrect encoding
35 lines
498 B
C
35 lines
498 B
C
#ifndef _LIBRFB_RFBCONTEXT_H_
|
|
#define _LIBRFB_RFBCONTEXT_H_
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS typedef struct _RfbContext
|
|
{
|
|
RfbConnection *connection;
|
|
|
|
guint8 *buffer1;
|
|
gpointer buffer1_alloc;
|
|
guint buffer1_len;
|
|
|
|
guint8 *buffer2;
|
|
gpointer buffer2_alloc;
|
|
guint buffer2_len;
|
|
|
|
gchar *name;
|
|
} RfbContext;
|
|
|
|
typedef struct _RfbRect
|
|
{
|
|
RfbContext *context;
|
|
|
|
guint x_pos;
|
|
guint y_pos;
|
|
guint width;
|
|
guint height;
|
|
guint encoding_type;
|
|
|
|
gchar *data;
|
|
} RfbRect;
|
|
|
|
G_END_DECLS
|
|
#endif
|