mirror of https://github.com/tongzx/nt5src
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
50 lines
531 B
/*++
|
|
|
|
Copyright (c) 1998-2001 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_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
ULONG
|
|
UlGetMdlChainByteCount(
|
|
IN PMDL pMdlChain
|
|
);
|
|
|
|
PMDL
|
|
UlCloneMdl(
|
|
IN PMDL pMdl
|
|
);
|
|
|
|
PMDL
|
|
UlFindLastMdlInChain(
|
|
IN PMDL pMdlChain
|
|
);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}; // extern "C"
|
|
#endif
|
|
|
|
#endif // _MDLUTIL_H_
|