From cf1dc543f142263917468c19249d6a3e920b17b2 Mon Sep 17 00:00:00 2001 From: lloyd Date: Sun, 23 Nov 2008 18:34:41 +0000 Subject: Fix return types in declaration --- src/entropy/win32_stats/es_win32.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') 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); }; } -- cgit v1.2.3