004
29.07.2005, 08:43 Uhr
Tommix
|
Hallo, wenn Du einen Teil des Fensterinhaltes auslesen willst, ist es womöglich einfacher dies mit ReadConsoleOutput zu machen:
Zitat von MSDN: |
ReadConsoleOutput The ReadConsoleOutput function reads character and color attribute data from a rectangular block of character cells in a console screen buffer, and the function writes the data to a rectangular block at a specified location in the destination buffer.
C++: |
BOOL ReadConsoleOutput( HANDLE hConsoleOutput, // handle to a console screen buffer PCHAR_INFO lpBuffer, // address of buffer that receives data COORD dwBufferSize, // column-row size of destination buffer COORD dwBufferCoord, // upper-left cell to write to PSMALL_RECT lpReadRegion // address of rectangle to read from );
|
...
|
Gruß, Tommix
-- 13 Dieser Post wurde am 29.07.2005 um 08:44 Uhr von Tommix editiert. |