aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy/win32_stats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-23 18:34:41 +0000
committerlloyd <[email protected]>2008-11-23 18:34:41 +0000
commitcf1dc543f142263917468c19249d6a3e920b17b2 (patch)
tree469ca038054a03041aef72f9f8fcdafd208386d0 /src/entropy/win32_stats
parentc7792d1260d36ca2d025359d5bda610c6873e8a3 (diff)
Fix return types in declaration
Diffstat (limited to 'src/entropy/win32_stats')
-rw-r--r--src/entropy/win32_stats/es_win32.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/entropy/win32_stats/es_win32.h b/src/entropy/win32_stats/es_win32.h
index 87f8289fa..3124bd414 100644
--- a/src/entropy/win32_stats/es_win32.h
+++ b/src/entropy/win32_stats/es_win32.h
@@ -17,8 +17,9 @@ class BOTAN_DLL Win32_EntropySource : public EntropySource
{
public:
std::string name() const { return "Win32 Statistics"; }
- void fast_poll(byte buf[], u32bit length);
- void slow_poll(byte buf[], u32bit length);
+
+ u32bit fast_poll(byte buf[], u32bit length);
+ u32bit slow_poll(byte buf[], u32bit length);
};
}