Add missing Path implementations for WINCE

This commit is contained in:
Pascal Bach
2015-03-11 11:30:10 +01:00
committed by Guenter Obiltschnig
parent 0a1218cd7e
commit 64710b2ff7
2 changed files with 36 additions and 9 deletions

View File

@@ -31,12 +31,35 @@ std::string PathImpl::currentImpl()
return("\\");
}
std::string PathImpl::homeImpl()
{
return("\\");
}
std::string PathImpl::configHomeImpl()
{
return homeImpl();
}
std::string PathImpl::dataHomeImpl()
{
return homeImpl();
}
std::string PathImpl::cacheHomeImpl()
{
return homeImpl();
}
std::string PathImpl::tempHomeImpl()
{
return tempImpl();
}
std::string PathImpl::configImpl()
{
return("\\");
}
std::string PathImpl::systemImpl()
{