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

  1. /*++
  2. Copyright (c) 1997-2000 Microsoft Corporation
  3. Module Name:
  4. tr_comn.c
  5. Abstract:
  6. This module provides the routines which are common to all the translators
  7. Author:
  8. Andrew Thornton (andrewth) 21-May-1997
  9. Revision History:
  10. --*/
  11. #include "pcip.h"
  12. #ifdef ALLOC_PRAGMA
  13. #pragma alloc_text(PAGE, PciReferenceTranslator)
  14. #pragma alloc_text(PAGE, PciDereferenceTranslator)
  15. #endif
  16. VOID
  17. PciReferenceTranslator(
  18. IN PVOID Context
  19. )
  20. {
  21. PAGED_CODE();
  22. }
  23. VOID
  24. PciDereferenceTranslator(
  25. IN PVOID Context
  26. )
  27. {
  28. PAGED_CODE();
  29. }