Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

20 lines
265 B

#include <nt.h>
#include <ntrtl.h>
#include <unistd.h>
#include <stdio.h>
#include "tsttmp.h" // defines DbgPrint as printf
//
// 'tsthw'
// First step 'hellow world' test
//
int
main(int argc, char *argv[])
{
DbgPrint("Hello World\n");
return 1;
}