VOID
VC_FreeMem(
PDEVICE_INFO pDevInfo,
PVOID pData,
ULONG Length
);
The VC_FreeMem function frees memory space that was allocated by calling VC_AllocMem.
Parameters
pDevInfo
Pointer to the DEVICE_INFO structure returned by VC_Init.
pData
Pointer that was returned by VC_AllocMem.
Length
Size of memory allocation that was requested using VC_AllocMem.
Return Value
None.
Comments
The VC_FreeMem function calls ExFreePool to deallocate the specified memory space.