diff options
author | Jack Lloyd <[email protected]> | 2018-03-02 11:13:36 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-02 11:13:36 -0500 |
commit | e5a9aed2dd2723b7af502e454a23d1b4fa28fbbf (patch) | |
tree | 7305b419936d6327a2fd31ecc7e1671940a2b291 /src/lib/asn1 | |
parent | d36a745ccfd3efec8a011dd1d76e34bbc3f193fb (diff) |
Use API annotations
Diffstat (limited to 'src/lib/asn1')
-rw-r--r-- | src/lib/asn1/asn1_print.h | 4 |
1 files changed, 2 insertions, 2 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: /** |