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.

43 lines
962 B

  1. //=================================================================
  2. //
  3. // NTDriverIO.h --
  4. //
  5. // Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
  6. //
  7. // Revisions: 07/07/99 a-peterc Created
  8. //
  9. //=================================================================
  10. #ifndef _CNDISAPI_H_
  11. #define _CNDISAPI_H_
  12. class CNdisApi
  13. {
  14. private:
  15. protected:
  16. public:
  17. //=================================================
  18. // Constructor/destructor
  19. //=================================================
  20. CNdisApi();
  21. ~CNdisApi();
  22. UINT PnpUpdateGateway( PCWSTR a_pAdapter ) ;
  23. UINT PnpUpdateNbtAdapter( PCWSTR a_pAdapter ) ;
  24. UINT PnpUpdateNbtGlobal(
  25. BOOL a_fLmhostsFileSet,
  26. BOOL a_fEnableLmHosts
  27. ) ;
  28. UINT PnpUpdateIpxGlobal() ;
  29. UINT PnpUpdateIpxAdapter( PCWSTR a_pAdapter, BOOL a_fAuto ) ;
  30. };
  31. #endif _CNDISAPI_H_