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/crl_ent.h'

#
#
# patch "include/crl_ent.h"
#  from [a40e0b1fa6be72627250db0ea2deec3b3fac7a80]
#    to [ed0bbb9460910d21f367e8ace0286cf93c520db9]
#
============================================================
--- include/crl_ent.h	a40e0b1fa6be72627250db0ea2deec3b3fac7a80
+++ include/crl_ent.h	ed0bbb9460910d21f367e8ace0286cf93c520db9
@@ -13,7 +13,7 @@ namespace Botan {
 /*************************************************
 * CRL Entry                                      *
 *************************************************/
-class CRL_Entry : public ASN1_Object
+class BOTAN_DLL CRL_Entry : public ASN1_Object
    {
    public:
       void encode_into(class DER_Encoder&) const;
@@ -35,9 +35,9 @@ class CRL_Entry : public ASN1_Object
 /*************************************************
 * Comparison Operations                          *
 *************************************************/
-bool operator==(const CRL_Entry&, const CRL_Entry&);
-bool operator!=(const CRL_Entry&, const CRL_Entry&);
-bool operator<(const CRL_Entry&, const CRL_Entry&);
+BOTAN_DLL bool operator==(const CRL_Entry&, const CRL_Entry&);
+BOTAN_DLL bool operator!=(const CRL_Entry&, const CRL_Entry&);
+BOTAN_DLL bool operator<(const CRL_Entry&, const CRL_Entry&);

 }