~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to panels/printers/pp-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya, Micah Gersten, Rodrigo Moya
  • Date: 2011-05-24 10:55:28 UTC
  • mfrom: (1.1.46 upstream)
  • Revision ID: james.westby@ubuntu.com-20110524105528-dlmxhkwzc0t67kzn
Tags: 1:3.0.2-1ubuntu3
[ Micah Gersten ]
* debian/control:
  - Add reaks/Replaces on g-s-d (<< 3.0~) for gnome-control-center-data (LP: #786417)

[ Rodrigo Moya ]
* New upstream release
* debian/watch:
  - Switch to .bz2, as this is what is used in ftp.gnome.org now
* debian/patches/01_git_remove_gettext_calls.patch
* debian/patches/01_git_kill_warning.patch:
  - Remove upstreamed patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
G_BEGIN_DECLS
28
28
 
 
29
/*
 
30
 * Match level of PPD driver.
 
31
 */
 
32
enum
 
33
{
 
34
  PPD_NO_MATCH = 0,
 
35
  PPD_GENERIC_MATCH,
 
36
  PPD_CLOSE_MATCH,
 
37
  PPD_EXACT_MATCH,
 
38
  PPD_EXACT_CMD_MATCH
 
39
};
 
40
 
 
41
typedef struct
 
42
{
 
43
  gchar *ppd_name;
 
44
  gint   ppd_match_level;
 
45
} PPDName;
 
46
 
29
47
DBusGProxy *get_dbus_proxy (const gchar *name,
30
48
                            const gchar *path,
31
49
                            const gchar *iface,
34
52
gchar      *get_tag_value (const gchar *tag_string,
35
53
                           const gchar *tag_name);
36
54
 
37
 
gchar      *get_ppd_name (gchar *device_class,
 
55
PPDName    *get_ppd_name (gchar *device_class,
38
56
                          gchar *device_id,
39
57
                          gchar *device_info,
40
58
                          gchar *device_make_and_model,