The unified diff between revisions [6afe2db1..] 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 [aa94cc91d4d5605f8dae20fd20ce5fc364867b37]
#    to [e78434c0e695bc47ad2c0bdfbfbae8ba36bda8f7]
#
============================================================
--- include/util.h	aa94cc91d4d5605f8dae20fd20ce5fc364867b37
+++ include/util.h	e78434c0e695bc47ad2c0bdfbfbae8ba36bda8f7
@@ -11,28 +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);
+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);

 }