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.

44 lines
742 B

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. misc.c
  5. Abstract:
  6. This module contains declarations of functions and globals
  7. for helper routines not readily available
  8. in kernel or TDI libraries for ws2ifsl.sys driver.
  9. Author:
  10. Vadim Eydelman (VadimE) Dec-1996
  11. Revision History:
  12. --*/
  13. ULONG
  14. CopyMdlChainToBuffer(
  15. IN PMDL SourceMdlChain,
  16. IN PVOID Destination,
  17. IN ULONG DestinationLength
  18. );
  19. VOID
  20. AllocateMdlChain(
  21. IN PIRP Irp,
  22. IN LPWSABUF BufferArray,
  23. IN ULONG BufferCount,
  24. OUT PULONG TotalByteCount
  25. );
  26. ULONG
  27. CopyBufferToMdlChain(
  28. IN PVOID Source,
  29. IN ULONG SourceLength,
  30. IN PMDL DestinationMdlChain
  31. );