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
514 B

  1. /*++
  2. Copyright (c) 1998-2002 Microsoft Corporation
  3. Module Name:
  4. mdlutil.h
  5. Abstract:
  6. This module contains general MDL utilities.
  7. Author:
  8. Keith Moore (keithmo) 25-Aug-1998
  9. Revision History:
  10. --*/
  11. #ifndef _MDLUTIL_H_
  12. #define _MDLUTIL_H_
  13. ULONG
  14. UlGetMdlChainByteCount(
  15. IN PMDL pMdlChain
  16. );
  17. PMDL
  18. UlCloneMdl(
  19. IN PMDL pMdl,
  20. IN ULONG MdlLength
  21. );
  22. PMDL
  23. UlFindLastMdlInChain(
  24. IN PMDL pMdlChain
  25. );
  26. #endif // _MDLUTIL_H_