Platform SDK: DLC/NetBIOS |
The LLC_BUFFER_CREATE_PARMS structure is the DLC parameter table for the LLC_BUFFER_CREATE command. You pass a pointer to this structure using the pParameterTable member of the CCB_PARMS union.
typedef struct { HANDLE hBufferPool; PVOID pBuffer; ULONG cbBufferSize; ULONG cbMinimumSizeThreshold; } LLC_BUFFER_CREATE_PARMS, *PLLC_BUFFER_CREATE_PARMS;
Win32 DLC supports one buffer pool per process. After you open an adapter using the LLC_DIR_OPEN_ADAPTER command, you must give the DLC driver a buffer pool by using the LLC_BUFFER_CREATE command.
You should carefully select the total and minimum buffer pool sizes, because the memory manager has a dynamic quota of available pages for each process. Your application may not run if it tries to allocate a buffer pool that is too large.
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in Dlcapi.h.
The DLC Interface Overview, DLC Structures, AcsLan, CCB_PARMS