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.

50 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. heap.c
  5. Abstract:
  6. WinDbg Extension Api
  7. Author:
  8. Kshitiz K. Sharma (kksharma) 10-Jan-2001
  9. Environment:
  10. User Mode.
  11. Revision History:
  12. --*/
  13. #include "precomp.h"
  14. #pragma hdrstop
  15. DECLARE_API( help )
  16. {
  17. dprintf("acl <Address> [flags] - Displays the ACL\n" );
  18. dprintf("atom [atom] - Dump the atom or table(s) for the process\n");
  19. dprintf("cxr - Obsolete, .cxr is new command\n");
  20. dprintf("dlls [-h] - Dump loaded DLLS\n");
  21. dprintf("exr - Obsolete, .exr is new command\n");
  22. dprintf("gflag [value] - Dump the global flag\n");
  23. dprintf("heap [address] - Dump heap\n");
  24. dprintf("help - Displays this list\n");
  25. dprintf("kuser - Displays KUSER_SHARED_DATA\n");
  26. dprintf("list - Dumps lists, list -h for more info\n");
  27. dprintf("obja [address] - Displays object attributes\n");
  28. dprintf("peb [peb addr to dump] - Dump the PEB structure\n");
  29. dprintf("psr - Dumps an IA64 Processor Status Word\n");
  30. dprintf("sd <Address> [flags] - Displays the SECURITY_DESCRIPTOR\n" );
  31. dprintf("sid <Address> [flags] - Displays the SID\n" );
  32. dprintf("str AnsiStringAddress - Dump an ANSI string\n");
  33. dprintf("teb [teb addr to dump] - Dump the TEB structure\n");
  34. dprintf("ustr UnicodeStringAddress - Dump a UNICODE string\n");
  35. return S_OK;
  36. }