mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
20 lines
422 B
C
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 */
|