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.

50 lines
531 B

  1. /*++
  2. Copyright (c) 1998-2001 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. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. ULONG
  17. UlGetMdlChainByteCount(
  18. IN PMDL pMdlChain
  19. );
  20. PMDL
  21. UlCloneMdl(
  22. IN PMDL pMdl
  23. );
  24. PMDL
  25. UlFindLastMdlInChain(
  26. IN PMDL pMdlChain
  27. );
  28. #ifdef __cplusplus
  29. }; // extern "C"
  30. #endif
  31. #endif // _MDLUTIL_H_