// winsplp.h
PBIDI_RESPONSE_CONTAINER RouterAllocBidiResponseContainer(
DWORD Count
);
View the official Windows Driver Kit DDI referenceNo description available.
RouterAllocBidiResponseContainer allocates a BIDI_RESPONSE_CONTAINER structure containing a list of bidi responses. The bidi response list is an array of BIDI_RESPONSE_DATA structures.
CountSpecifies the number of BIDI_RESPONSE_DATA structures to be allocated.
RouterAllocBidiResponseContainer returns a pointer to the allocated structure, on success. If the function fails to allocate the structure, the caller can obtain the error code from GetLastError.
When the memory allocated by this function is no longer needed, use RouterFreeBidiResponseContainer.
RouterFreeBidiResponseContainer