The unified diff between revisions [5ac60dc5..] and [4e40e885..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/util.h'

#
#
# patch "include/util.h"
#  from [bff70e5c51cb75f6fcfb1335e1c5ad38c55ca924]
#    to [e78434c0e695bc47ad2c0bdfbfbae8ba36bda8f7]
#
============================================================
--- include/util.h	bff70e5c51cb75f6fcfb1335e1c5ad38c55ca924
+++ include/util.h	e78434c0e695bc47ad2c0bdfbfbae8ba36bda8f7
@@ -1,6 +1,6 @@
 /*************************************************
 * Utility Functions Header File                  *
-* (C) 1999-2007 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_UTIL_H__
@@ -11,29 +11,27 @@ namespace Botan {
 namespace Botan {

 /*************************************************
-* Timer Access Functions                         *
+* Time Access Functions                          *
 *************************************************/
-u64bit system_time();
-u64bit system_clock();
+BOTAN_DLL u64bit system_time();

 /*************************************************
 * Memory Locking Functions                       *
 *************************************************/
-void lock_mem(void*, u32bit);
-void unlock_mem(void*, u32bit);
+BOTAN_DLL void lock_mem(void*, u32bit);
+BOTAN_DLL void unlock_mem(void*, u32bit);

 /*************************************************
 * Misc Utility Functions                         *
 *************************************************/
-u32bit round_up(u32bit, u32bit);
-u32bit round_down(u32bit, u32bit);
-u64bit combine_timers(u32bit, u32bit, u32bit);
+BOTAN_DLL u32bit round_up(u32bit, u32bit);
+BOTAN_DLL u32bit round_down(u32bit, u32bit);

 /*************************************************
 * Work Factor Estimates                          *
 *************************************************/
-u32bit entropy_estimate(const byte[], u32bit);
-u32bit dl_work_factor(u32bit);
+BOTAN_DLL u32bit entropy_estimate(const byte[], u32bit);
+BOTAN_DLL u32bit dl_work_factor(u32bit);

 }