update for HEAD-2003091401
[reactos.git] / lib / crtdll / io / open.c
index 928cb88..ca01975 100644 (file)
@@ -47,6 +47,9 @@ char __is_text_file(FILE* p)
    return (!((p)->_flag&_IOSTRG) && (fileno_modes[(p)->_file].mode&O_TEXT));
 }
 
+/*
+ * @implemented
+ */
 int _open(const char* _path, int _oflag,...)
 {
     HANDLE hFile;
@@ -219,11 +222,17 @@ int __fileno_close(int _fd)
     return 0;
 }
 
+/*
+ * @implemented
+ */
 int _open_osfhandle(void *osfhandle, int flags)
 {
     return __fileno_alloc((HANDLE)osfhandle, flags);
 }
 
+/*
+ * @implemented
+ */
 void *_get_osfhandle(int fileno)
 {
     return filehnd(fileno);