update for HEAD-2003091401
[reactos.git] / lib / msvcrt / io / wopen.c
index c98c2eb..d6468f1 100644 (file)
@@ -29,6 +29,9 @@
 #include <msvcrt/msvcrtdbg.h>
 
 
+/*
+ * @implemented
+ */
 int _wopen(const wchar_t* _path, int _oflag, ...)
 {
 #if !defined(NDEBUG) && defined(DBG)
@@ -134,6 +137,9 @@ int _wopen(const wchar_t* _path, int _oflag, ...)
     return __fileno_alloc(hFile,_oflag);
 }
 
+/*
+ * @implemented
+ */
 int _wsopen(wchar_t* path, int access, int shflag, int mode)
 {
     return _wopen((path), (access)|(shflag), (mode));