:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / 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 #endif /* __POOL_H */
18
19 /* EOF */