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.

44 lines
894 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  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. void NotifyTcpipOfChanges(LPCTSTR pszMachineName);
  15. HRESULT
  16. HrSendNdisHandlePnpEvent (
  17. UINT uiLayer,
  18. UINT uiOperation,
  19. LPCWSTR pszUpper,
  20. LPCWSTR pszLower,
  21. LPCWSTR pmszBindList,
  22. PVOID pvData,
  23. DWORD dwSizeData);
  24. HRESULT
  25. HrSendNdisPnpReconfig (
  26. UINT uiLayer,
  27. LPCWSTR wszUpper,
  28. LPCWSTR wszLower,
  29. PVOID pvData,
  30. DWORD dwSizeData);
  31. #endif