Ignore:
Timestamp:
Oct 3, 2000, 7:28:32 PM (25 years ago)
Author:
sandervl
Message:

misc updates + fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/HandleManager.cpp

    r4285 r4407  
    1 /* $Id: HandleManager.cpp,v 1.50 2000-09-20 21:32:50 hugh Exp $ */
     1/* $Id: HandleManager.cpp,v 1.51 2000-10-03 17:28:26 sandervl Exp $ */
    22
    33/*
     
    13771377  PHMHANDLE pHMHandle;       /* pointer to the handle structure in the table */
    13781378
     1379  //Must return FILE_TYPE_CHAR here; (used to fail index check)
     1380  if((hFile == GetStdHandle(STD_INPUT_HANDLE)) ||
     1381     (hFile == GetStdHandle(STD_OUTPUT_HANDLE)) ||
     1382     (hFile == GetStdHandle(STD_ERROR_HANDLE)))
     1383  {
     1384      return FILE_TYPE_CHAR;
     1385  }
    13791386                                                          /* validate handle */
    13801387  iIndex = _HMHandleQuery(hFile);                           /* get the index */
Note: See TracChangeset for help on using the changeset viewer.