Files
reactos/reactos/include/internal/pool.h
T
The ReactOS Manager 0f94427db0 Initial revision
svn path=/trunk/; revision=2
1996-01-23 01:02:17 +00:00

20 lines
422 B
C

#ifndef __INTERNAL_POOL_H
#define __INTERNAL_POOL_H
#include <windows.h>
#include <internal/linkage.h>
/*
* Maximum size of the kmalloc area (this is totally arbitary)
*/
#define NONPAGED_POOL_SIZE (4*1024*1024)
/*
* Allocates an arbitary sized block at any alignment
*/
//asmlinkage void* ExAllocatePool(ULONG size);
//asmlinkage void ExFreePool(void* block);
#endif /* __INTERNAL_POOL_H */