diff options
author | Graeme Lunt <graeme.lunt@smhs.co.uk> | 2006-05-10 19:50:54 +0000 |
---|---|---|
committer | Graeme Lunt <graeme.lunt@smhs.co.uk> | 2006-05-10 19:50:54 +0000 |
commit | ab19b927c8945e9a4b8d6cde7c898b77bceac6d5 (patch) | |
tree | 5178e200dcbdda928a77578dbeac05c296120942 /epan/oid_resolv.h | |
parent | 30fc91887cd7d849c1d51626fbce941605f0b2c6 (diff) | |
download | wireshark-ab19b927c8945e9a4b8d6cde7c898b77bceac6d5.tar.gz wireshark-ab19b927c8945e9a4b8d6cde7c898b77bceac6d5.tar.bz2 wireshark-ab19b927c8945e9a4b8d6cde7c898b77bceac6d5.zip |
"Field Information" context menu item that will bring up a web page reference to a field type of FT_OID
svn path=/trunk/; revision=18125
Diffstat (limited to 'epan/oid_resolv.h')
-rw-r--r-- | epan/oid_resolv.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/oid_resolv.h b/epan/oid_resolv.h index 7176a65efe..3886755585 100644 --- a/epan/oid_resolv.h +++ b/epan/oid_resolv.h @@ -32,6 +32,8 @@ #ifndef __OID_RESOLV_H__ #define __OID_RESOLV_H__ +#include <epan/proto.h> + /* init and clenup funcions called from epan.h */ extern void oid_resolv_init(void); extern void oid_resolv_cleanup(void); @@ -46,5 +48,8 @@ extern const gchar *get_oid_str_name(const gchar *oid_str); extern void add_oid_name(const guint8 *oid, gint oid_len, const gchar *name); extern void add_oid_str_name(const gchar *oid_str, const gchar *name); +/* get a URL for an OID in the given field */ +/* if ret_url is NULL, just return TRUE if we are configured to provide one */ +extern gboolean get_oid_url(field_info *finfo, gchar **ret_url); #endif /* __OID_RESOLV_H__ */ |