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.

58 lines
624 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. log.c
  5. Abstract:
  6. WinDbg Extension Api
  7. implements !_log
  8. Author:
  9. KenRay
  10. Environment:
  11. User Mode.
  12. Revision History:
  13. --*/
  14. #include "precomp.h"
  15. #include "genusbkd.h"
  16. DECLARE_API( help )
  17. /*++
  18. Routine Description:
  19. dumps the extension
  20. Arguments:
  21. args - Address flags
  22. Return Value:
  23. None
  24. --*/
  25. {
  26. dprintf("GenUsbKd Usage: \n\n");
  27. dprintf("dumplog <GenUSB Device Extension> <# of entries>\n");
  28. dprintf("\n\n\n");
  29. return S_OK;
  30. }