The unified diff between revisions [229d3942..] and [51f9ee51..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/asn1_oid.h'
#
#
# patch "include/asn1_oid.h"
# from [23e21c30ec13da88cc841e270021519c5229d5b5]
# to [6e4b868ccc447a35b13af5575146d38cc145e05f]
#
============================================================
--- include/asn1_oid.h 23e21c30ec13da88cc841e270021519c5229d5b5
+++ include/asn1_oid.h 6e4b868ccc447a35b13af5575146d38cc145e05f
@@ -15,7 +15,7 @@ namespace Botan {
/*************************************************
* ASN.1 Object Identifier *
*************************************************/
-class OID : public ASN1_Object
+class BOTAN_DLL OID : public ASN1_Object
{
public:
void encode_into(class DER_Encoder&) const;
@@ -37,13 +37,13 @@ class OID : public ASN1_Object
/*************************************************
* Append another component onto the OID *
*************************************************/
-OID operator+(const OID&, u32bit);
+OID BOTAN_DLL operator+(const OID&, u32bit);
/*************************************************
* Compare two OIDs *
*************************************************/
-bool operator!=(const OID&, const OID&);
-bool operator<(const OID&, const OID&);
+bool BOTAN_DLL operator!=(const OID&, const OID&);
+bool BOTAN_DLL operator<(const OID&, const OID&);
}