aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-09 14:40:38 +0000
committerlloyd <[email protected]>2008-10-09 14:40:38 +0000
commit643df89a37dd0f8d9c090825166231db4fdaa55c (patch)
tree886bce3a306c24797986f9e578bc4528acbef59e /src/entropy
parentbd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (diff)
Add BOTAN_DLL macro to public class definitions that were missing it.
Diffstat (limited to 'src/entropy')
-rw-r--r--src/entropy/beos_stats/es_beos.h2
-rw-r--r--src/entropy/cryptoapi_rng/es_capi.h2
-rw-r--r--src/entropy/dev_random/es_dev.h2
-rw-r--r--src/entropy/egd/es_egd.h2
-rw-r--r--src/entropy/proc_walk/es_ftw.h2
-rw-r--r--src/entropy/unix_procs/es_unix.h2
-rw-r--r--src/entropy/unix_procs/unix_cmd.h2
-rw-r--r--src/entropy/win32_stats/es_win32.h2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/entropy/beos_stats/es_beos.h b/src/entropy/beos_stats/es_beos.h
index 047939c8c..57e15c9d9 100644
--- a/src/entropy/beos_stats/es_beos.h
+++ b/src/entropy/beos_stats/es_beos.h
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* BeOS Entropy Source *
*************************************************/
-class BeOS_EntropySource : public Buffered_EntropySource
+class BOTAN_DLL BeOS_EntropySource : public Buffered_EntropySource
{
private:
void do_fast_poll();
diff --git a/src/entropy/cryptoapi_rng/es_capi.h b/src/entropy/cryptoapi_rng/es_capi.h
index 68e42cf9c..db4e19271 100644
--- a/src/entropy/cryptoapi_rng/es_capi.h
+++ b/src/entropy/cryptoapi_rng/es_capi.h
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* Win32 CAPI Entropy Source *
*************************************************/
-class Win32_CAPI_EntropySource : public EntropySource
+class BOTAN_DLL Win32_CAPI_EntropySource : public EntropySource
{
public:
u32bit slow_poll(byte[], u32bit);
diff --git a/src/entropy/dev_random/es_dev.h b/src/entropy/dev_random/es_dev.h
index 21d28b9bb..91f08ad4c 100644
--- a/src/entropy/dev_random/es_dev.h
+++ b/src/entropy/dev_random/es_dev.h
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* Device Based Entropy Source *
*************************************************/
-class Device_EntropySource : public EntropySource
+class BOTAN_DLL Device_EntropySource : public EntropySource
{
public:
Device_EntropySource(const std::vector<std::string>& fs) : fsnames(fs) {}
diff --git a/src/entropy/egd/es_egd.h b/src/entropy/egd/es_egd.h
index ce6ba9521..6f5cae1b3 100644
--- a/src/entropy/egd/es_egd.h
+++ b/src/entropy/egd/es_egd.h
@@ -15,7 +15,7 @@ namespace Botan {
/*************************************************
* EGD Entropy Source *
*************************************************/
-class EGD_EntropySource : public EntropySource
+class BOTAN_DLL EGD_EntropySource : public EntropySource
{
public:
u32bit slow_poll(byte[], u32bit);
diff --git a/src/entropy/proc_walk/es_ftw.h b/src/entropy/proc_walk/es_ftw.h
index a2229ff1f..e0d266141 100644
--- a/src/entropy/proc_walk/es_ftw.h
+++ b/src/entropy/proc_walk/es_ftw.h
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* File Tree Walking Entropy Source *
*************************************************/
-class FTW_EntropySource : public Buffered_EntropySource
+class BOTAN_DLL FTW_EntropySource : public Buffered_EntropySource
{
public:
FTW_EntropySource(const std::string& root_dir);
diff --git a/src/entropy/unix_procs/es_unix.h b/src/entropy/unix_procs/es_unix.h
index d1b1d623e..4925fd4e1 100644
--- a/src/entropy/unix_procs/es_unix.h
+++ b/src/entropy/unix_procs/es_unix.h
@@ -15,7 +15,7 @@ namespace Botan {
/*************************************************
* Unix Entropy Source *
*************************************************/
-class Unix_EntropySource : public Buffered_EntropySource
+class BOTAN_DLL Unix_EntropySource : public Buffered_EntropySource
{
public:
void add_sources(const Unix_Program[], u32bit);
diff --git a/src/entropy/unix_procs/unix_cmd.h b/src/entropy/unix_procs/unix_cmd.h
index 090dd8fdd..8544e7879 100644
--- a/src/entropy/unix_procs/unix_cmd.h
+++ b/src/entropy/unix_procs/unix_cmd.h
@@ -29,7 +29,7 @@ struct Unix_Program
/*************************************************
* Command Output DataSource *
*************************************************/
-class DataSource_Command : public DataSource
+class BOTAN_DLL DataSource_Command : public DataSource
{
public:
u32bit read(byte[], u32bit);
diff --git a/src/entropy/win32_stats/es_win32.h b/src/entropy/win32_stats/es_win32.h
index 02558b335..f2314ab0c 100644
--- a/src/entropy/win32_stats/es_win32.h
+++ b/src/entropy/win32_stats/es_win32.h
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* Win32 Entropy Source *
*************************************************/
-class Win32_EntropySource : public Buffered_EntropySource
+class BOTAN_DLL Win32_EntropySource : public Buffered_EntropySource
{
private:
void do_fast_poll();