mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Added GetSystemWindowsDirectory[A/W] stub
returning GetWindowsDirectory. FIXME svn path=/trunk/; revision=5255
This commit is contained in:
parent
c32bccd381
commit
e88c8bf234
1 changed files with 29 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: curdir.c,v 1.36 2003/07/10 18:50:51 chorns Exp $
|
||||
/* $Id: curdir.c,v 1.37 2003/07/24 19:50:40 sedwards Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -328,7 +328,6 @@ GetSystemDirectoryW (
|
|||
return Length+1; //bad: ret space needed incl. nullchar
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -403,4 +402,32 @@ GetWindowsDirectoryW (
|
|||
return Length+1; //bad: ret space needed incl. nullchar
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
UINT
|
||||
STDCALL
|
||||
GetSystemWindowsDirectoryA(
|
||||
LPWSTR lpBuffer,
|
||||
UINT uSize
|
||||
)
|
||||
{
|
||||
DbgPrint("Fixme: GetSystemWindowsDirectoryA\n");
|
||||
return GetWindowsDirectoryA( lpBuffer, uSize );
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
UINT
|
||||
STDCALL
|
||||
GetSystemWindowsDirectoryW(
|
||||
LPWSTR lpBuffer,
|
||||
UINT uSize
|
||||
)
|
||||
{
|
||||
DbgPrint("Fixme: GetSystemWindowsDirectoryW\n");
|
||||
return GetWindowsDirectoryW( lpBuffer, uSize );
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue