mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-13 11:58:26 -06:00
Linux/MacOSX: first dynamic mode implementation
This commit is contained in:
@@ -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)); }
|
||||
|
||||
Reference in New Issue
Block a user