49 lines
606 B
C
49 lines
606 B
C
|
|
/*++
|
|
|
|
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();
|
|
}
|
|
|
|
|