Leaked source code of windows server 2003
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
899 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. match.h
  5. Abstract:
  6. This module contains the routines that try to match a PNSOBJ with a DeviceObject
  7. Author:
  8. Stephane Plante (splante)
  9. Environment:
  10. NT Kernel Model Driver only
  11. --*/
  12. #ifndef _MATCH_H_
  13. #define _MATCH_H_
  14. NTSTATUS
  15. ACPIMatchHardwareAddress(
  16. IN PDEVICE_OBJECT DeviceObject,
  17. IN ULONG Address,
  18. OUT BOOLEAN *Success
  19. );
  20. NTSTATUS
  21. ACPIMatchHardwareId(
  22. IN PDEVICE_OBJECT DeviceObject,
  23. IN PUNICODE_STRING AcpiUnicodeId,
  24. OUT BOOLEAN *Success
  25. );
  26. extern PUCHAR *KdComPortInUse;
  27. VOID
  28. ACPIMatchKernelPorts(
  29. IN PDEVICE_EXTENSION DeviceExtension,
  30. IN POBJDATA Resources
  31. );
  32. #endif