mirror of https://github.com/kiwix/libkiwix.git
Add missing function's declarations to convert path for windows.
This commit is contained in:
parent
c5051b343e
commit
7c7e351d34
|
@ -22,6 +22,10 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
std::string WideToUtf8(const std::wstring& wstr);
|
||||||
|
std::wstring Utf8ToWide(const std::string& str);
|
||||||
|
#endif
|
||||||
bool isRelativePath(const std::string& path);
|
bool isRelativePath(const std::string& path);
|
||||||
std::string computeAbsolutePath(const std::string& path, const std::string& relativePath);
|
std::string computeAbsolutePath(const std::string& path, const std::string& relativePath);
|
||||||
std::string computeRelativePath(const std::string& path, const std::string& absolutePath);
|
std::string computeRelativePath(const std::string& path, const std::string& absolutePath);
|
||||||
|
|
Loading…
Reference in New Issue