mirror of https://github.com/tongzx/nt5src
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
956 B
33 lines
956 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1992.
|
|
//
|
|
// File: symtrans.c
|
|
//
|
|
// Contents: Address->symbolic name translation code
|
|
//
|
|
// Functions: TranslateAddress
|
|
//
|
|
// History: 8-Mar-93 PeterWi Re-ssynced to module list so that
|
|
// symbol translation worked.
|
|
// 16-Jul-92 MikeSe Created
|
|
//
|
|
// Notes: This is debug only code, extracted from a piece of NT.
|
|
// (private\windows\base\client\debugint.c).
|
|
//
|
|
// Warning: most of this stuff is black magic. You are strongly
|
|
// advised to refer to the original code (as above) before
|
|
// making any changes.
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include "dswarn.h"
|
|
|
|
void
|
|
TranslateAddress(
|
|
void * pvAddress,
|
|
char * pchBuffer )
|
|
{
|
|
|
|
}
|