Windows NT 4.0 source code leak
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.

56 lines
532 B

4 years ago
  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. trace.c
  5. Abstract:
  6. WinDbg Extension Api
  7. Author:
  8. Ramon J San Andres (ramonsa) 5-Nov-1993
  9. Environment:
  10. User Mode.
  11. Revision History:
  12. --*/
  13. #include "precomp.h"
  14. #pragma hdrstop
  15. VOID
  16. TraceExtension(
  17. PCSTR lpArgumentString
  18. );
  19. DECLARE_API( trace )
  20. /*++
  21. Routine Description:
  22. Dump user mode trace buffer
  23. Arguments:
  24. args - address
  25. Return Value:
  26. None
  27. --*/
  28. {
  29. TraceExtension( args );
  30. }
  31. #include "..\\ntsdexts\\traceext.c"