Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <windows.h>
#include <winioctl.h>
#include <stdio.h>
#include <malloc.h>
void NewLine(void); void ScrollScreenBuffer(HANDLE, INT); #define MyErrorExit
HANDLE _ScreenHandle; CONSOLE_SCREEN_BUFFER_INFO csbiInfo; void __cdecl wmain(void) { COORD CursorPosition; WCHAR chBuffer[256]; DWORD cRead, cWritten, fdwMode, fdwOldMode; WORD wOldColorAttrs; ULONG i; HANDLE _ScreenHandle;
// Get handles to STDIN and STDOUT.
_ScreenHandle = CreateFile( (LPWSTR)L"CONOUT$", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL );
#if 0
CursorPosition.Y = 24; CursorPosition.X = 1; SetConsoleCursorPosition( _ScreenHandle, CursorPosition ); #endif
while (1) { for (i = 0; i < 100; i++) { wsprintf(chBuffer, L"%d percent completed, bob. \r", i);
if (! WriteConsole( _ScreenHandle, // output handle
chBuffer, // prompt string
wcslen(chBuffer), // string length
&cWritten, // bytes written
NULL) ) // not overlapped
{ break; } } }
}
|