2025-04-27 07:49:33 -04:00

82 lines
822 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
memalloc.c
Abstract:
Memory allocator for the crypto routines.
IISCryptoAllocMemory
IISCryptoFreeMemory
Author:
Keith Moore (keithmo) 02-Dec-1996
Revision History:
--*/
#include "precomp.h"
#pragma hdrstop
//
// Private constants.
//
//
// Private types.
//
//
// Private globals.
//
//
// Private prototypes.
//
//
// Public functions.
//
PVOID
WINAPI
IISCryptoAllocMemory(
IN DWORD Size
)
{
return CoTaskMemAlloc( Size );
} // IISCryptoAllocateMemory
VOID
WINAPI
IISCryptoFreeMemory(
IN PVOID Buffer
)
{
CoTaskMemFree( Buffer );
} // IISCryptoFreeMemory
//
// Private functions.
//