MASM32 Downloads
Hi RHL,Here is a Simple console piping example
Quote from: Vortex on June 11, 2012, 06:20:47 AMHi RHL,Here is a Simple console piping examplethanks Vortex, yeah, in really I wanted read, but data are already written on the console, not from the start of a function :P thanks guys
invoke GetStdHandle, STD_INPUT_HANDLE... invoke SetConsoleMode, eax, ENABLE_LINE_INPUT or ENABLE_ECHO_INPUT or ENABLE_PROCESSED_INPUT... invoke ReadFile, hInput, pBuffer, bLen, ADDR bRead, NULL