From 9913af3a8ed61333cafd0e611f214f7c86652423 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 24 Jun 2015 14:14:34 +0200 Subject: Linux/MacOSX: first dynamic mode implementation --- src/Platform/StringConverter.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/Platform/StringConverter.h') diff --git a/src/Platform/StringConverter.h b/src/Platform/StringConverter.h index 9a9e098f..7b68ff4d 100644 --- a/src/Platform/StringConverter.h +++ b/src/Platform/StringConverter.h @@ -32,9 +32,13 @@ namespace VeraCrypt static wstring ToExceptionString (const exception &ex); static string ToLower (const string &str); static uint32 ToUInt32 (const string &str); - static uint32 ToUInt32 (const wstring &str); + static uint32 ToUInt32 (const wstring &str); + static int32 ToInt32 (const string &str); + static int32 ToInt32 (const wstring &str); static uint64 ToUInt64 (const string &str); - static uint64 ToUInt64 (const wstring &str); + static uint64 ToUInt64 (const wstring &str); + static int64 ToInt64 (const string &str); + static int64 ToInt64 (const wstring &str); static string ToSingle (double number) { return ToSingle (FromNumber (number)); } static string ToSingle (int32 number) { return ToSingle (FromNumber (number)); } static string ToSingle (uint32 number) { return ToSingle (FromNumber (number)); } -- cgit v1.2.3