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.

32 lines
1.8 KiB

  1. #include <windows.h>
  2. #include <stdio.h>
  3. void
  4. __cdecl
  5. main (
  6. int Argc,
  7. PUCHAR *Argv
  8. )
  9. {
  10. fprintf(stderr, "\n\n\n\n");
  11. fprintf(stderr, "***************************************************************************\n");
  12. fprintf(stderr, "***************************************************************************\n");
  13. fprintf(stderr, "** **\n");
  14. fprintf(stderr, "** This tool is no longer supported. It's functionality has been **\n");
  15. fprintf(stderr, "** merged into the kernel debugger. You can examine a dump file by **\n");
  16. fprintf(stderr, "** loading it in the kernel debugger **\n");
  17. fprintf(stderr, "** **\n");
  18. fprintf(stderr, "** kd -z <dump_file_name> -y <symbol_path> [-i <image_path>] **\n");
  19. fprintf(stderr, "** **\n");
  20. fprintf(stderr, "** and running commands such as !vm, !process, !locks, etc... **\n");
  21. fprintf(stderr, "** **\n");
  22. fprintf(stderr, "** Please refer to the debugger documentation for more information **\n");
  23. fprintf(stderr, "** on analyzing system failures. **\n");
  24. fprintf(stderr, "** **\n");
  25. fprintf(stderr, "***************************************************************************\n");
  26. fprintf(stderr, "***************************************************************************\n");
  27. fprintf(stderr, "\n\n\n\n");
  28. return;
  29. }