Ignore:
Timestamp:
Jan 23, 2001, 7:31:26 PM (25 years ago)
Author:
sandervl
Message:

handle manager class for standard handles added

File:
1 edited

Legend:

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

    r4407 r5019  
    1 /* $Id: conout.cpp,v 1.8 2000-10-03 17:28:28 sandervl Exp $ */
     1/* $Id: conout.cpp,v 1.9 2001-01-23 18:31:25 sandervl Exp $ */
    22
    33/*
     
    243243  if (pHMHandleData->hHMHandle != pConsoleGlobals->hConsoleBuffer)
    244244  {
    245 #if 0
    246     HMDeviceRequest(pConsoleGlobals->hConsoleBuffer,        /* hide the cursor */
    247                     DRQ_INTERNAL_CONSOLECURSORSHOW,
    248                     CONSOLECURSOR_HIDE,
    249                     0,
    250                     0,
    251                     0);
    252 #endif
    253 
    254245    dwResult = HMWriteFile(pConsoleGlobals->hConsoleBuffer,
    255246                           lpBuffer,
     
    258249                           lpOverlapped);
    259250
    260 #if 0
    261     HMDeviceRequest(pConsoleGlobals->hConsoleBuffer,        /* show the cursor */
    262                     DRQ_INTERNAL_CONSOLECURSORSHOW,
    263                     CONSOLECURSOR_SHOW,
    264                     0,
    265                     0,
    266                     0);
    267 #endif
    268 
    269251    return (dwResult);                                 /* return result code */
    270252  }
    271   else
     253  else {
    272254    return (FALSE);                    /* raise error condition */
     255  }
    273256}
    274257
Note: See TracChangeset for help on using the changeset viewer.