mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
30 lines
589 B
C
30 lines
589 B
C
#include <precomp.h>
|
|
#include <tchar.h>
|
|
#include <process.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _tchdir(const _TCHAR* _path)
|
|
{
|
|
WCHAR newdir[MAX_PATH];
|
|
|
|
if (!SetCurrentDirectory(_path))
|
|
{
|
|
_dosmaperr(_path ? GetLastError() : 0);
|
|
return -1;
|
|
}
|
|
|
|
/* Update the drive-specific current directory variable */
|
|
if (GetCurrentDirectoryW(MAX_PATH, newdir) >= 2)
|
|
{
|
|
if (newdir[1] == L':')
|
|
{
|
|
WCHAR envvar[4] = { L'=', towupper(newdir[0]), L':', L'\0' };
|
|
SetEnvironmentVariableW(envvar, newdir);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|