diff options
author | Anders Broman <anders.broman@ericsson.com> | 2007-11-01 22:07:43 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2007-11-01 22:07:43 +0000 |
commit | dbcabb19384fd736453f4fac8fe20216dbcdcb9f (patch) | |
tree | 987328117a4f01cd3f2567138e63ddc155e970a9 /epan/oids.h | |
parent | 24976b1d920a296287eada07c892f7b6d85a424f (diff) | |
download | wireshark-dbcabb19384fd736453f4fac8fe20216dbcdcb9f.tar.gz wireshark-dbcabb19384fd736453f4fac8fe20216dbcdcb9f.tar.bz2 wireshark-dbcabb19384fd736453f4fac8fe20216dbcdcb9f.zip |
Get rid of most of the legacy oid stuff.
svn path=/trunk/; revision=23333
Diffstat (limited to 'epan/oids.h')
-rw-r--r-- | epan/oids.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/epan/oids.h b/epan/oids.h index 3b835c3e0c..8ba3959e76 100644 --- a/epan/oids.h +++ b/epan/oids.h @@ -155,20 +155,7 @@ extern void oid_add_from_string(const char* name, const gchar *oid_str); /* macros for legacy oid functions */ -/* from former oid_resolv.h */ -#define add_oid_name(oid, oid_len, name) oid_add_from_encoded(name,oid,oid_len) -#define get_oid_str_name(oidstr) oid_resolved_from_string(oidstr) -#define get_oid_name(encoid, encoid_len) oid_resolved_from_encoded(encoid, encoid_len) -#define oid_resolv_enabled() (1) #define oid_resolv_cleanup() ((void)0) - -/* from to_str.h */ -#define oid_to_str(encoid, encoid_len) oid_encoded2string(encoid, encoid_len) - -/* from former dissectors/format_oid.h */ -#define format_oid(oid, oid_length) ((void*)oid_resolved(oid_length,oid)) -#define new_format_oid(oid, oid_length, non_decoded, decoded) oid_both(oid_length, oid, non_decoded, decoded) - #define subid_t guint32 |