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.

40 lines
1.1 KiB

  1. /********************************************************************************
  2. ** Copyright (c) 1998-1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** Portions Copyright (c) 1998-1999 Intel Corporation
  5. **
  6. ********************************************************************************/
  7. #ifndef _ADAPTER_H_
  8. #define _ADAPTER_H_
  9. #include "shared.h"
  10. /*****************************************************************************
  11. * Defines
  12. *****************************************************************************
  13. */
  14. const ULONG MAX_MINIPORTS = 2;
  15. /*****************************************************************************
  16. * Externals
  17. *****************************************************************************
  18. */
  19. extern NTSTATUS CreateMiniportWaveICH
  20. (
  21. OUT PUNKNOWN * Unknown,
  22. IN REFCLSID,
  23. IN PUNKNOWN UnknownOuter OPTIONAL,
  24. IN POOL_TYPE PoolType
  25. );
  26. extern NTSTATUS CreateMiniportTopologyICH
  27. (
  28. OUT PUNKNOWN * Unknown,
  29. IN REFCLSID,
  30. IN PUNKNOWN UnknownOuter OPTIONAL,
  31. IN POOL_TYPE PoolType
  32. );
  33. #endif //_ADAPTER_H_