Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

48 lines
606 B

/*++
Copyright (c) 1997-2000 Microsoft Corporation
Module Name:
tr_comn.c
Abstract:
This module provides the routines which are common to all the translators
Author:
Andrew Thornton (andrewth) 21-May-1997
Revision History:
--*/
#include "pcip.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, PciReferenceTranslator)
#pragma alloc_text(PAGE, PciDereferenceTranslator)
#endif
VOID
PciReferenceTranslator(
IN PVOID Context
)
{
PAGED_CODE();
}
VOID
PciDereferenceTranslator(
IN PVOID Context
)
{
PAGED_CODE();
}