WindowsXP/base/busdrv/pci/tr_comn.c
2025-04-27 07:49:33 -04:00

49 lines
654 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();
}