remove whitespace from end of lines
[reactos.git] / reactos / drivers / net / tcpip / include / pool.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: include/pool.h
5 * PURPOSE: Prototypes for memory pooling
6 */
7 #ifndef __POOL_H
8 #define __POOL_H
9
10
11 PVOID PoolAllocateBuffer(
12 ULONG Size);
13
14 VOID PoolFreeBuffer(
15 PVOID Buffer);
16
17 PVOID TcpipAllocateFromNPagedLookasideList( PNPAGED_LOOKASIDE_LIST List );
18 VOID TcpipFreeToNPagedLookasideList( PNPAGED_LOOKASIDE_LIST List,
19 PVOID Thing );
20 NDIS_STATUS PrependPacket( PNDIS_PACKET Packet, PCHAR Data, UINT Len,
21 BOOLEAN Copy );
22
23 #endif /* __POOL_H */
24
25 /* EOF */