Share via


AllocMem

The AllocMem callback function allocates memory from the process heap to a buffer. Any memory allocated with this function will automatically be freed by the Web server when the session ends.

VOID *WINAPI *AllocMem(
PHTTP_FILTER_CONTEXT pfc, 
DWORD cbSize, 
DWORD dwReserved );

Parameters

  • pfc
    Points to the HTTP_FILTER_CONTEXT data structure that is associated with the current, active HTTP transaction.
  • cbSize
    Indicates the size of the buffer to be allocated, in bytes.
  • dwReserved
    Reserved for use by the server.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 3.0 and later Httpfilt.h   Httpfilt.lib

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

HTTP_FILTER_CONTEXT

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.