diff options
-rw-r--r-- | src/entropy/win32_stats/es_win32.h | 5 |
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); }; } |