Ignore:
Timestamp:
Jun 18, 2009, 11:53:26 AM (16 years ago)
Author:
ydario
Message:

Kernel32 updates.

File:
1 edited

Legend:

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

    r10471 r21302  
    24912491
    24922492  /* simply forward the request to that routine */
    2493   return (/*HMDeviceConsoleBufferClass::*/WriteFile(pHMHandleData,
    2494                                                 lpvBuffer,
    2495                                                 cchToWrite,
    2496                                                 lpcchWritten,
    2497                                                 NULL, NULL));
     2493  return (WriteFile(pHMHandleData, lpvBuffer, cchToWrite, lpcchWritten, NULL, NULL));
    24982494}
    24992495
     
    25442540
    25452541  /* simply forward the request to that routine */
    2546   rc = HMDeviceConsoleBufferClass::WriteFile(pHMHandleData,
    2547                                              pszAscii,
    2548                                              alen,
    2549                                              lpcchWritten,
    2550                                              NULL, NULL);
     2542  rc = WriteFile(pHMHandleData, pszAscii, alen, lpcchWritten, NULL, NULL);
    25512543
    25522544  *lpcchWritten = MultiByteToWideChar( GetConsoleCP(), 0, pszAscii, *lpcchWritten, 0, 0 );
Note: See TracChangeset for help on using the changeset viewer.