Microsoft Internet Security and Acceleration Server 2004 SDK

AllocMem

The AllocMem callback function is used to allocate memory from the process heap to a buffer. Any memory allocated by using this callback function will automatically be freed by the ISA Server Web proxy after the session ends (as indicated by the SF_NOTIFY_END_OF_NET_SESSION notification). If the memory cannot be allocated, this callback function returns NULL. For more information on the types of event notifications that are sent to Web filters, see Event Notifications.

The AllocMem callback function is declared as:

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

Parameters

pfc
Pointer to the HTTP_FILTER_CONTEXT data structure that is associated with the current, active HTTP session. Pass the filter context in this parameter.
cbSize
Indicates the size of the buffer to be allocated, in bytes.
dwReserved
Reserved for use by the server.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Wpxhttpfilt.h.

See Also

Callback Functions