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.

39 lines
689 B

  1. //////////////////////////////////////////////////////////////////////////////\
  2. //
  3. // Copyright (c) 1990 Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // ipndis.h
  8. //
  9. // Abstract:
  10. //
  11. // The main header for the NDIS/KS test driver
  12. //
  13. // Author:
  14. //
  15. // P Porzuczek
  16. //
  17. // Environment:
  18. //
  19. // Notes:
  20. //
  21. // Revision History:
  22. //
  23. //
  24. ///////////////////////////////////////////////////////////////////////////////
  25. #ifndef _IP_NDIS_H
  26. #define _IP_NDIS_H
  27. NTSTATUS
  28. ntInitializeDeviceObject(
  29. IN PVOID nhWrapperHandle,
  30. IN PADAPTER pAdapter,
  31. OUT PDEVICE_OBJECT *pndisDriverObject,
  32. OUT PVOID pndisDeviceHandle
  33. );
  34. #endif // _IP_NDIS_H_
  35.