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.

68 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. csrdebug.c
  5. Abstract:
  6. This module implements CSR Debug Services.
  7. Author:
  8. Mark Lucovsky (markl) 02-Apr-1991
  9. Revision History:
  10. --*/
  11. #include "csrsrv.h"
  12. #if defined(_WIN64)
  13. #include <wow64t.h>
  14. #endif
  15. PIMAGE_DEBUG_DIRECTORY
  16. CsrpLocateDebugSection(
  17. IN HANDLE ProcessHandle,
  18. IN PVOID Base
  19. );
  20. NTSTATUS
  21. CsrDebugProcess(
  22. IN ULONG TargetProcessId,
  23. IN PCLIENT_ID DebugUserInterface,
  24. IN PCSR_ATTACH_COMPLETE_ROUTINE AttachCompleteRoutine
  25. )
  26. {
  27. return STATUS_UNSUCCESSFUL;
  28. }
  29. NTSTATUS
  30. CsrDebugProcessStop(
  31. IN ULONG TargetProcessId,
  32. IN PCLIENT_ID DebugUserInterface)
  33. /*++
  34. Routine Description:
  35. This procedure stops debugging a process
  36. Arguments:
  37. ProcessId - Supplies the address of the process being debugged.
  38. DebugUserInterface - Client that issued the call
  39. Return Value:
  40. NTSTATUS
  41. --*/
  42. {
  43. return STATUS_UNSUCCESSFUL;
  44. }