mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
25 lines
598 B
C
25 lines
598 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS TCP/IP protocol driver
|
|
* FILE: include/pool.h
|
|
* PURPOSE: Prototypes for memory pooling
|
|
*/
|
|
#ifndef __POOL_H
|
|
#define __POOL_H
|
|
|
|
|
|
PVOID PoolAllocateBuffer(
|
|
ULONG Size);
|
|
|
|
VOID PoolFreeBuffer(
|
|
PVOID Buffer);
|
|
|
|
PVOID TcpipAllocateFromNPagedLookasideList( PNPAGED_LOOKASIDE_LIST List );
|
|
VOID TcpipFreeToNPagedLookasideList( PNPAGED_LOOKASIDE_LIST List,
|
|
PVOID Thing );
|
|
NDIS_STATUS PrependPacket( PNDIS_PACKET Packet, PCHAR Data, UINT Len,
|
|
BOOLEAN Copy );
|
|
|
|
#endif /* __POOL_H */
|
|
|
|
/* EOF */
|