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.

33 lines
989 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1992.
  5. //
  6. // File: symtrans.c
  7. //
  8. // Contents: Address->symbolic name translation code
  9. //
  10. // Functions: TranslateAddress
  11. //
  12. // History: 8-Mar-93 PeterWi Re-ssynced to module list so that
  13. // symbol translation worked.
  14. // 16-Jul-92 MikeSe Created
  15. //
  16. // Notes: This is debug only code, extracted from a piece of NT.
  17. // (private\windows\base\client\debugint.c).
  18. //
  19. // Warning: most of this stuff is black magic. You are strongly
  20. // advised to refer to the original code (as above) before
  21. // making any changes.
  22. //
  23. //--------------------------------------------------------------------------
  24. #include "dswarn.h"
  25. void
  26. TranslateAddress(
  27. void * pvAddress,
  28. char * pchBuffer )
  29. {
  30. }