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.

36 lines
804 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C P N P . H
  7. //
  8. // Contents: Common code for PnP.
  9. //
  10. // Notes: Pollute this under penalty of death.
  11. //
  12. // Author: shaunco 10 Oct 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #ifndef _NCPNP_H_
  17. #define _NCPNP_H_
  18. #include "ndispnp.h"
  19. HRESULT
  20. HrSendServicePnpEvent (
  21. PCWSTR pszService,
  22. DWORD dwControl);
  23. HRESULT
  24. HrSendNdisPnpReconfig (
  25. UINT uiLayer,
  26. PCWSTR pszUpper,
  27. PCWSTR pszLower = NULL,
  28. PVOID pvData = NULL,
  29. DWORD dwSizeData = 0);
  30. #endif // _NCPNP_H_