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
43 lines
514 B
/*++
|
|
|
|
Copyright (c) 1998-2002 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
mdlutil.h
|
|
|
|
Abstract:
|
|
|
|
This module contains general MDL utilities.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 25-Aug-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _MDLUTIL_H_
|
|
#define _MDLUTIL_H_
|
|
|
|
|
|
ULONG
|
|
UlGetMdlChainByteCount(
|
|
IN PMDL pMdlChain
|
|
);
|
|
|
|
PMDL
|
|
UlCloneMdl(
|
|
IN PMDL pMdl,
|
|
IN ULONG MdlLength
|
|
);
|
|
|
|
PMDL
|
|
UlFindLastMdlInChain(
|
|
IN PMDL pMdlChain
|
|
);
|
|
|
|
|
|
#endif // _MDLUTIL_H_
|