diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/vendor.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/includes/vendor.h b/includes/vendor.h index 021f4e78..9fe1f995 100644 --- a/includes/vendor.h +++ b/includes/vendor.h @@ -24,11 +24,16 @@ struct _Vendor { char *match_string; int match_case; /* 0 = ignore case, 1 = match case */ char *name; + char *name_short; char *url; + char *url_support; }; -void vendor_init(void); +void vendor_init(void); +void vendor_cleanup(void); +const Vendor *vendor_match(const gchar *id_str, ...); /* end list of strings with NULL */ const gchar *vendor_get_name(const gchar *id_str); const gchar *vendor_get_url(const gchar *id_str); +void vendor_free(Vendor *v); #endif /* __VENDOR_H__ */ |