~ubuntu-branches/debian/squeeze/virt-viewer/squeeze

« back to all changes in this revision

Viewing changes to src/viewer.h

  • Committer: Bazaar Package Importer
  • Author(s): Guido Günther, Guido Günther, Laurent Léonard
  • Date: 2010-02-02 21:27:29 UTC
  • mfrom: (1.2.1 upstream) (2.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20100202212729-8jp220b4xzqel70t
Tags: 0.2.1-1
[ Guido Günther ]
* [c2945b4] bump standards version
* [8ca5ea3] exclude plugins from dh_makeshlibs

[ Laurent Léonard ]
* [39043d7] Remove libtool issue fix.
* [a460a21] Revert "Remove libtool issue fix." This reverts commit
  39043d7460220d7aeecb30b7b489e9064b591440.
* [9ab8056] Bump Debhelper version to 7.
* [366e279] Bump Standards-Version to 3.8.3.
* [0a4e524] Clean debian/rules.
* [e662ab7] Remove debian/docs.
* [409e5bf] Update clean target in debian/rules.
* [a57c8ba] Allow DM upload and add myself as uploader.
* [2f26f4f] Clean debian/watch.

[ Guido Günther ]
* [6806613] Imported Upstream version 0.2.1
* [b956a6e] Build-dep on intltool
* [b6fa2e2] Use xulrunner-dev instead of iceape-dev
* [431a46e] New patch 0001-Fix-build-with-xulrunner-1.9.1.patch: Fix build
  with xulrunner 1.9.1
* [c3381c5] New patch 0002-Define-GLADE_DIR.patch: Define GLADE_DIR
* [720c999] Depend on virt-viewer
* [94828c7] New patch 0003-Add-some-docs.patch: Adds some docs
* [8aaf986] Add example web page
* [ae04386] Warn about security implications

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Author: Daniel P. Berrange <berrange@redhat.com>
21
21
 */
22
22
 
23
 
#ifndef VIEWER_H
24
 
#define VIEWER_H
25
 
 
26
 
extern int viewer_start (const char *uri, const char *name, int direct, int waitvnc, int set_verbose, GtkWidget *(*get_toplevel)(void *), void *data, int with_menubar);
27
 
 
28
 
#endif /* VIEWER_H */
 
23
#ifndef VIRT_VIEWER_H
 
24
#define VIRT_VIEWER_H
 
25
 
 
26
#include "util.h"
 
27
 
 
28
extern int viewer_start (const char *uri,
 
29
                         const char *name,
 
30
                         gboolean direct,
 
31
                         gboolean waitvm,
 
32
                         gboolean reconnect,
 
33
                         gboolean verbose,
 
34
                         gboolean debug,
 
35
                         GtkWidget *container);
 
36
 
 
37
#endif /* VIRT_VIEWER_H */