Ignore:
Timestamp:
Jul 12, 1999, 7:20:04 PM (26 years ago)
Author:
phaller
Message:

Fix: console input queue fixes

File:
1 edited

Legend:

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

    r149 r296  
    1 /* $Id: conin.cpp,v 1.3 1999-06-21 18:53:51 phaller Exp $ */
     1/* $Id: conin.cpp,v 1.4 1999-07-12 17:20:03 phaller Exp $ */
    22
    33/*
     
    244244              FlushConsoleInputBuffer(pHMHandleData));
    245245
     246    case DRQ_GETCONSOLEMODE:
     247      return (HMDeviceConsoleInClass
     248              ::GetConsoleMode(pHMHandleData,
     249                               (LPDWORD)arg1));
     250
    246251    case DRQ_GETNUMBEROFCONSOLEINPUTEVENTS:
    247252      return (HMDeviceConsoleInClass::
     
    293298                                (DWORD)arg2,
    294299                                (LPDWORD)arg3));
     300
     301    case DRQ_SETCONSOLEMODE:
     302      return (HMDeviceConsoleInClass
     303              ::SetConsoleMode(pHMHandleData,
     304                               (DWORD)arg1));
    295305
    296306    case DRQ_WRITECONSOLEINPUTA:
Note: See TracChangeset for help on using the changeset viewer.