diff options
author | lloyd <[email protected]> | 2008-11-23 18:34:41 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-23 18:34:41 +0000 |
commit | cf1dc543f142263917468c19249d6a3e920b17b2 (patch) | |
tree | 469ca038054a03041aef72f9f8fcdafd208386d0 /src | |
parent | c7792d1260d36ca2d025359d5bda610c6873e8a3 (diff) |
Fix return types in declaration
Diffstat (limited to 'src')
-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); }; } |