summaryrefslogtreecommitdiff
path: root/includes/vendor.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/vendor.h')
-rw-r--r--includes/vendor.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/vendor.h b/includes/vendor.h
index 778e2ea3..21d52562 100644
--- a/includes/vendor.h
+++ b/includes/vendor.h
@@ -21,13 +21,14 @@
typedef struct _Vendor Vendor;
struct _Vendor {
- char *id;
+ char *match_string;
+ int match_case; /* 0 = ignore case, 1 = match case*/
char *name;
char *url;
};
void vendor_init(void);
-const gchar *vendor_get_name(const gchar *id);
-const gchar *vendor_get_url(const gchar *id);
+const gchar *vendor_get_name(const gchar *id_str);
+const gchar *vendor_get_url(const gchar *id_str);
#endif /* __VENDOR_H__ */