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.
 
 
 
 
 
 

35 lines
573 B

#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
int
main(
int argc,
char *argv[],
char *envp[]
)
{
int i=0;
SMALL_RECT Window;
Window.Left = 0;
Window.Top = 0;
Window.Right = 10;
Window.Bottom = 5;
SetConsoleWindowInfo(GetStdHandle(STD_OUTPUT_HANDLE),
TRUE,
&Window
);
while ( TRUE ) {
printf("%d\n",++i);
}
}