added QSE_LIBCALL?() macros

This commit is contained in:
2017-10-27 08:05:41 +00:00
parent 25de06d195
commit 02f3adf134
3 changed files with 28 additions and 14 deletions

View File

@ -152,7 +152,7 @@ int AppRoot::chroot (const qse_wchar_t* wpath) QSE_CPP_NOEXCEPT
mpath = qse_wcstombsdup (wpath, QSE_NULL, QSE_MMGR_GETDFL());
if (!mpath) return -1;
int n = AppRoot::chroot (mpath);
int n = AppRoot::chroot ((const qse_mchar_t*)mpath);
QSE_MMGR_FREE (QSE_MMGR_GETDFL(), mpath);
return n;
}