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

  1. #include <nt.h>
  2. #include <ntrtl.h>
  3. #include <unistd.h>
  4. #include <stdio.h>
  5. #include "tsttmp.h" // defines DbgPrint as printf
  6. //
  7. // 'tsthw'
  8. // First step 'hellow world' test
  9. //
  10. int
  11. main(int argc, char *argv[])
  12. {
  13. DbgPrint("Hello World\n");
  14. return 1;
  15. }