aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-03-02 11:13:36 -0500
committerJack Lloyd <[email protected]>2018-03-02 11:13:36 -0500
commite5a9aed2dd2723b7af502e454a23d1b4fa28fbbf (patch)
tree7305b419936d6327a2fd31ecc7e1671940a2b291
parentd36a745ccfd3efec8a011dd1d76e34bbc3f193fb (diff)
Use API annotations
-rw-r--r--src/lib/asn1/asn1_print.h4
-rw-r--r--src/lib/pk_pad/emsa_pssr/pssr.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/asn1/asn1_print.h b/src/lib/asn1/asn1_print.h
index d9e15f14b..a6bc6b15f 100644
--- a/src/lib/asn1/asn1_print.h
+++ b/src/lib/asn1/asn1_print.h
@@ -19,7 +19,7 @@ class BER_Decoder;
/**
* Format ASN.1 data and call a virtual to format
*/
-class BOTAN_DLL ASN1_Formatter
+class BOTAN_PUBLIC_API(2,4) ASN1_Formatter
{
public:
virtual ~ASN1_Formatter() = default;
@@ -78,7 +78,7 @@ class BOTAN_DLL ASN1_Formatter
* Format ASN.1 data into human readable output. The exact form of the output for
* any particular input is not guaranteed and may change from release to release.
*/
-class BOTAN_DLL ASN1_Pretty_Printer final : public ASN1_Formatter
+class BOTAN_PUBLIC_API(2,4) ASN1_Pretty_Printer final : public ASN1_Formatter
{
public:
/**
diff --git a/src/lib/pk_pad/emsa_pssr/pssr.h b/src/lib/pk_pad/emsa_pssr/pssr.h
index 61a4b9448..3b902dd6a 100644
--- a/src/lib/pk_pad/emsa_pssr/pssr.h
+++ b/src/lib/pk_pad/emsa_pssr/pssr.h
@@ -58,7 +58,7 @@ class BOTAN_PUBLIC_API(2,0) PSSR final : public EMSA
* PSSR_Raw
* This accepts a pre-hashed buffer
*/
-class BOTAN_DLL PSSR_Raw final : public EMSA
+class BOTAN_PUBLIC_API(2,3) PSSR_Raw final : public EMSA
{
public: