Changeset 5019 for trunk/src/kernel32/conout.cpp
- Timestamp:
- Jan 23, 2001, 7:31:26 PM (25 years ago)
- 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:28sandervl Exp $ */1 /* $Id: conout.cpp,v 1.9 2001-01-23 18:31:25 sandervl Exp $ */ 2 2 3 3 /* … … 243 243 if (pHMHandleData->hHMHandle != pConsoleGlobals->hConsoleBuffer) 244 244 { 245 #if 0246 HMDeviceRequest(pConsoleGlobals->hConsoleBuffer, /* hide the cursor */247 DRQ_INTERNAL_CONSOLECURSORSHOW,248 CONSOLECURSOR_HIDE,249 0,250 0,251 0);252 #endif253 254 245 dwResult = HMWriteFile(pConsoleGlobals->hConsoleBuffer, 255 246 lpBuffer, … … 258 249 lpOverlapped); 259 250 260 #if 0261 HMDeviceRequest(pConsoleGlobals->hConsoleBuffer, /* show the cursor */262 DRQ_INTERNAL_CONSOLECURSORSHOW,263 CONSOLECURSOR_SHOW,264 0,265 0,266 0);267 #endif268 269 251 return (dwResult); /* return result code */ 270 252 } 271 else 253 else { 272 254 return (FALSE); /* raise error condition */ 255 } 273 256 } 274 257
Note:
See TracChangeset
for help on using the changeset viewer.