X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fkernel32%2Ffile%2Fcurdir.c;fp=lib%2Fkernel32%2Ffile%2Fcurdir.c;h=d1b88804301bc9766befda4061bc92748a2d23b7;hp=d6b928b7ec8596035afa7734abae21fc1220e70a;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/kernel32/file/curdir.c b/lib/kernel32/file/curdir.c index d6b928b..d1b8880 100644 --- a/lib/kernel32/file/curdir.c +++ b/lib/kernel32/file/curdir.c @@ -25,6 +25,9 @@ UNICODE_STRING WindowsDirectory; /* FUNCTIONS *****************************************************************/ +/* + * @implemented + */ DWORD STDCALL GetCurrentDirectoryA ( @@ -72,6 +75,9 @@ GetCurrentDirectoryA ( } +/* + * @implemented + */ DWORD STDCALL GetCurrentDirectoryW ( @@ -88,6 +94,9 @@ GetCurrentDirectoryW ( } +/* + * @implemented + */ WINBOOL STDCALL SetCurrentDirectoryA ( @@ -125,6 +134,9 @@ SetCurrentDirectoryA ( } +/* + * @implemented + */ WINBOOL STDCALL SetCurrentDirectoryW ( @@ -148,6 +160,9 @@ SetCurrentDirectoryW ( } +/* + * @implemented + */ DWORD STDCALL GetTempPathA ( @@ -191,6 +206,9 @@ GetTempPathA ( } +/* + * @implemented + */ DWORD STDCALL GetTempPathW ( @@ -238,6 +256,9 @@ GetTempPathW ( } +/* + * @implemented + */ UINT STDCALL GetSystemDirectoryA ( @@ -279,6 +300,9 @@ GetSystemDirectoryA ( } +/* + * @implemented + */ UINT STDCALL GetSystemDirectoryW ( @@ -304,7 +328,9 @@ GetSystemDirectoryW ( return Length+1; //bad: ret space needed incl. nullchar } - +/* + * @implemented + */ UINT STDCALL GetWindowsDirectoryA ( @@ -347,6 +373,9 @@ GetWindowsDirectoryA ( } +/* + * @implemented + */ UINT STDCALL GetWindowsDirectoryW ( @@ -373,4 +402,32 @@ GetWindowsDirectoryW ( return Length+1; //bad: ret space needed incl. nullchar } +/* + * @unimplemented + */ +UINT +STDCALL +GetSystemWindowsDirectoryA( + LPSTR 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 */