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.

76 lines
3.1 KiB

  1. /************************************************************************\
  2. *
  3. * MODULE: exts.h
  4. *
  5. * DESCRIPTION: macro driving file for use with stdext64.h and stdext64.cpp.
  6. *
  7. * Copyright (c) 1985 - 1999, Microsoft Corporation
  8. *
  9. * 6/9/1995 SanfordS Created
  10. *
  11. \************************************************************************/
  12. DOIT( help
  13. ,"help -v [cmd] - Displays this list or gives details on command\n"
  14. ," help - To dump short help text on all commands.\n"
  15. " help -v - To dump long help text on all commands.\n"
  16. " help cmd - To dump long help on given command.\n"
  17. ,"v"
  18. ,CUSTOM)
  19. DOIT( tls
  20. ,"tls - Displays the current value in a TLS slot\n"
  21. ,
  22. " tls slot - dumps the given TLS slot for the current thread\n"
  23. " tls slot pteb - dumps the given TLS slot for the given thread\n"
  24. ,""
  25. ,STDARGS2)
  26. DOIT( gcontext
  27. ,"gcontext - Displays information on a given DUser Context\n"
  28. ,
  29. " gcontext - dumps info on current DUser context\n"
  30. " gcontext pcontext - dumps info on given DUser context\n"
  31. " gcontext -t pteb - dumps info on specified context\n"
  32. " gcontext -v - dumps verbose info\n"
  33. ,"tv"
  34. ,STDARGS1)
  35. DOIT( gme
  36. ,"gme -lv pme - Displays information on a given MsgEntry\n"
  37. ,
  38. " gme pme - dumps simple info for MsgEntry at pme\n"
  39. " gme -l pme - dumps MsgEntry list\n"
  40. " gme -v pme - dumps verbose info\n"
  41. ,"lv"
  42. ,STDARGS1)
  43. DOIT( gmsg
  44. ,"gmsg -v pmsg - Displays information on a given GMSG\n"
  45. ,
  46. " gmsg pmsg - dumps simple info for GMSG at pme\n"
  47. " gmsg -v pmsg - dumps verbose info\n"
  48. ,"v"
  49. ,STDARGS1)
  50. DOIT( gthread
  51. ,"gthread - Displays information on a given DUser Thread\n"
  52. ,
  53. " gthread - dumps info on current DUser thread\n"
  54. " gthread pThread - dumps info on given DUser thread\n"
  55. " gthread -t pteb - dumps info on specified thread\n"
  56. " gthread -v - dumps verbose info\n"
  57. ,"tv"
  58. ,STDARGS1)
  59. DOIT( gticket
  60. ,"gticket - Displays information about DUser tickets\n"
  61. ," gticket - dumps info on all DUser tickets\n"
  62. " gticket -t ticket - dumps info on the specified ticket\n"
  63. " gticket -s slot - dumps info on the ticket at the specified slot\n"
  64. " gticket -o object - dumps info on the ticket for the specified object\n"
  65. " gticket -u uniqueness - dumps info on all tickets with the specified uniqueness\n"
  66. " gticket -v - adds verbose info (if any)\n"
  67. ,"tsouv"
  68. ,STDARGS1)