diff options
Diffstat (limited to 'include/oids.h')
-rw-r--r-- | include/oids.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/oids.h b/include/oids.h index e836ceef1..b5be0e01f 100644 --- a/include/oids.h +++ b/include/oids.h @@ -15,19 +15,19 @@ namespace OIDS { /************************************************* * Register an OID to string mapping * *************************************************/ -void add_oid(const OID&, const std::string&); +BOTAN_DLL void add_oid(const OID&, const std::string&); /************************************************* * See if an OID exists in the internal table * *************************************************/ -bool have_oid(const std::string&); +BOTAN_DLL bool have_oid(const std::string&); /************************************************* * Perform OID<->string mappings * *************************************************/ -std::string lookup(const OID&); -OID lookup(const std::string&); -bool name_of(const OID&, const std::string&); +BOTAN_DLL std::string lookup(const OID&); +BOTAN_DLL OID lookup(const std::string&); +BOTAN_DLL bool name_of(const OID&, const std::string&); } |