diff options
author | lloyd <[email protected]> | 2008-10-09 14:40:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-09 14:40:38 +0000 |
commit | 643df89a37dd0f8d9c090825166231db4fdaa55c (patch) | |
tree | 886bce3a306c24797986f9e578bc4528acbef59e /src/codec/zlib/zlib.h | |
parent | bd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (diff) |
Add BOTAN_DLL macro to public class definitions that were missing it.
Diffstat (limited to 'src/codec/zlib/zlib.h')
-rw-r--r-- | src/codec/zlib/zlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codec/zlib/zlib.h b/src/codec/zlib/zlib.h index c3baea4ee..5ab115336 100644 --- a/src/codec/zlib/zlib.h +++ b/src/codec/zlib/zlib.h @@ -14,7 +14,7 @@ namespace Botan { /************************************************* * Zlib Compression Filter * *************************************************/ -class Zlib_Compression : public Filter +class BOTAN_DLL Zlib_Compression : public Filter { public: void write(const byte input[], u32bit length); @@ -35,7 +35,7 @@ class Zlib_Compression : public Filter /************************************************* * Zlib Decompression Filter * *************************************************/ -class Zlib_Decompression : public Filter +class BOTAN_DLL Zlib_Decompression : public Filter { public: void write(const byte input[], u32bit length); |