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.
|
|
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright <c> 1993 Microsoft Corporation
Module Name :
freep.h
Abtract :
Contains private sizing routine definitions.
Author :
David Kays dkays October 1993
Revision History :
--------------------------------------------------------------------*/
typedef void (RPC_ENTRY * PFREE_ROUTINE)( PMIDL_STUB_MESSAGE, uchar *, PFORMAT_STRING );
IMPORTSPEC extern const PFREE_ROUTINE * pfnFreeRoutines;
void NdrpUnionFree( PMIDL_STUB_MESSAGE pStubMsg, uchar * pMemory, PFORMAT_STRING pFormat, long SwitchIs );
void NdrpEmbeddedPointerFree( PMIDL_STUB_MESSAGE pStubMsg, uchar * pMemory, PFORMAT_STRING pFormat );
PFORMAT_STRING NdrpEmbeddedRepeatPointerFree( PMIDL_STUB_MESSAGE pStubMsg, uchar * pMemory, PFORMAT_STRING pFormat );
|