The unified diff between revisions [5ac60dc5..] and [13704fef..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/basefilt.h'

#
#
# patch "include/basefilt.h"
#  from [7e88a84f573ac07ff44bdbdcf6747e3534d75975]
#    to [efa2ea51c6eee5fd064a1f0b88084009313ce9e5]
#
============================================================
--- include/basefilt.h	7e88a84f573ac07ff44bdbdcf6747e3534d75975
+++ include/basefilt.h	efa2ea51c6eee5fd064a1f0b88084009313ce9e5
@@ -1,6 +1,6 @@
 /*************************************************
 * Basic Filters Header File                      *
-* (C) 1999-2007 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_BASEFILT_H__
@@ -13,7 +13,7 @@ namespace Botan {
 /*************************************************
 * Chain                                          *
 *************************************************/
-class Chain : public Fanout_Filter
+class BOTAN_DLL Chain : public Fanout_Filter
    {
    public:
       void write(const byte input[], u32bit length) { send(input, length); }
@@ -25,7 +25,7 @@ class Chain : public Fanout_Filter
 /*************************************************
 * Fork                                           *
 *************************************************/
-class Fork : public Fanout_Filter
+class BOTAN_DLL Fork : public Fanout_Filter
    {
    public:
       void write(const byte input[], u32bit length) { send(input, length); }
@@ -38,7 +38,7 @@ class Fork : public Fanout_Filter
 /*************************************************
 * Keyed Filter                                   *
 *************************************************/
-class Keyed_Filter : public Filter
+class BOTAN_DLL Keyed_Filter : public Filter
    {
    public:
       virtual void set_key(const SymmetricKey&);