~ari-tczew/ubuntu/utopic/gtk-vnc/merge

« back to all changes in this revision

Viewing changes to src/vncconnection.h

  • Committer: Package Import Robot
  • Author(s): Laurent Léonard
  • Date: 2012-07-24 00:49:55 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20120724004955-6711f7ontxvn9yzy
Tags: 0.5.1-1
* [e2591bf] Imported Upstream version 0.5.1
* [a0f6408] Drop patch
  - Allow-Unix-domain-sockets-in-gvncviewer.patch - fixed upstream
* [c031b94] Bump Standards-Version to 3.9.3
* [61e5796] Set build directories for dh_auto_clean
* [7fde78d] Drop patch
  - Look-for-generated-enums-in-srcdir.patch
* [fada5be] Add dh_auto_test override
* [d7567f1] Update symbols
* [6189676] Enable dpkg-buildflags

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define VNC_CONNECTION_H
24
24
 
25
25
#include <glib.h>
 
26
#include <gio/gio.h>
26
27
 
27
28
#include <vncframebuffer.h>
28
29
#include <vnccursor.h>
153
154
VncConnection *vnc_connection_new(void);
154
155
 
155
156
gboolean vnc_connection_open_fd(VncConnection *conn, int fd);
 
157
gboolean vnc_connection_open_fd_with_hostname(VncConnection *conn, int fd, const char *hostname);
156
158
gboolean vnc_connection_open_host(VncConnection *conn, const char *host, const char *port);
 
159
gboolean vnc_connection_open_addr(VncConnection *conn, GSocketAddress *addr, const char *hostname);
157
160
gboolean vnc_connection_is_open(VncConnection *conn);
158
161
void vnc_connection_shutdown(VncConnection *conn);
159
162