Fixed utf8 issue in history manager.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4626 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-10-01 13:12:28 +00:00
parent c650265704
commit 363af69254
11 changed files with 248 additions and 73 deletions

View file

@ -43,21 +43,8 @@
#include <string>
// For win32 systems (tested on MingW+Ubuntu)
#define stat64 _stati64
namespace librs { namespace util {
bool ConvertUtf8ToUtf16(const std::string& source, std::wstring& dest);
bool ConvertUtf16ToUtf8(const std::wstring& source, std::string& dest);
} } // librs::util
#define stat64 _stati64
#endif // WINDOWS_SYS
#endif // RSWIN_H_