Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 184 of file file.c.
Referenced by _chsize(), _close(), _commit(), _eof(), _fstat64(), _futime(), _get_osfhandle(), _isatty(), _locking(), _lseeki64(), _write(), and read_i().
{ if (!is_valid_fd(fd)) { WARN(":fd (%d) - no handle!\n",fd); *__doserrno() = 0; *_errno() = EBADF; return INVALID_HANDLE_VALUE; } //if (get_ioinfo(fd)->handle == INVALID_HANDLE_VALUE) //FIXME("returning INVALID_HANDLE_VALUE for %d\n", fd); return get_ioinfo(fd)->handle; }