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.

41 lines
841 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: ndisutil.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // NdisUtil header file.
  11. // This is for everything that shouldn't be exported.
  12. #ifndef _NDISUTIL_H_
  13. #define _NDISUTIL_H_
  14. HRESULT
  15. HrSendNdisHandlePnpEvent (
  16. UINT uiLayer,
  17. UINT uiOperation,
  18. LPCWSTR pszUpper,
  19. LPCWSTR pszLower,
  20. LPCWSTR pmszBindList,
  21. PVOID pvData,
  22. DWORD dwSizeData);
  23. HRESULT
  24. HrSendNdisPnpReconfig (
  25. UINT uiLayer,
  26. LPCWSTR wszUpper,
  27. LPCWSTR wszLower,
  28. PVOID pvData,
  29. DWORD dwSizeData);
  30. #endif