mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
mark GetSystemWindowsDirectory() as implemented as it does exactly the same as GetWindowsDirectory()
svn path=/trunk/; revision=10730
This commit is contained in:
parent
a48983fc6d
commit
001b020926
1 changed files with 3 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: curdir.c,v 1.44 2004/08/24 17:15:42 navaraf Exp $
|
||||
/* $Id: curdir.c,v 1.45 2004/08/29 12:12:34 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -405,7 +405,7 @@ GetWindowsDirectoryW (
|
|||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
UINT
|
||||
STDCALL
|
||||
|
@ -414,12 +414,11 @@ GetSystemWindowsDirectoryA(
|
|||
UINT uSize
|
||||
)
|
||||
{
|
||||
DbgPrint("Fixme: GetSystemWindowsDirectoryA\n");
|
||||
return GetWindowsDirectoryA( lpBuffer, uSize );
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
UINT
|
||||
STDCALL
|
||||
|
@ -428,7 +427,6 @@ GetSystemWindowsDirectoryW(
|
|||
UINT uSize
|
||||
)
|
||||
{
|
||||
DbgPrint("Fixme: GetSystemWindowsDirectoryW\n");
|
||||
return GetWindowsDirectoryW( lpBuffer, uSize );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue