update for HEAD-2003091401
[reactos.git] / lib / kernel32 / synch / mutex.c
index fe27e3a..8b6cf1e 100644 (file)
@@ -18,6 +18,9 @@
 
 /* FUNCTIONS *****************************************************************/
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes,
             WINBOOL bInitialOwner,
@@ -43,6 +46,9 @@ CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes,
             WINBOOL bInitialOwner,
@@ -86,6 +92,9 @@ CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 OpenMutexA(DWORD dwDesiredAccess,
           WINBOOL bInheritHandle,
@@ -136,6 +145,9 @@ OpenMutexA(DWORD dwDesiredAccess,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 OpenMutexW(DWORD dwDesiredAccess,
           WINBOOL bInheritHandle,
@@ -179,6 +191,9 @@ OpenMutexW(DWORD dwDesiredAccess,
 }
 
 
+/*
+ * @implemented
+ */
 WINBOOL STDCALL
 ReleaseMutex(HANDLE hMutex)
 {