update for HEAD-2003091401
[reactos.git] / lib / kernel32 / file / curdir.c
index d6b928b..d1b8880 100644 (file)
@@ -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 */