This commit was generated by cvs2svn to compensate for changes in r10,
[reactos.git] / reactos / include / internal / pool.h
index 8baa905..0b5fd1a 100644 (file)
@@ -1,19 +1,11 @@
-#ifndef __INTERNAL_POOL_H\r
-#define __INTERNAL_POOL_H\r
-\r
-#include <windows.h>\r
-\r
-#include <internal/linkage.h>\r
-\r
-/*\r
- * Maximum size of the kmalloc area (this is totally arbitary)\r
- */\r
-#define NONPAGED_POOL_SIZE   (4*1024*1024)\r
-\r
-/*\r
- * Allocates an arbitary sized block at any alignment\r
- */\r
-//asmlinkage void* ExAllocatePool(ULONG size);\r
-//asmlinkage void ExFreePool(void* block);\r
-\r
-#endif /* __INTERNAL_POOL_H */\r
+#ifndef __INTERNAL_POOL_H
+#define __INTERNAL_POOL_H
+
+#include <windows.h>
+
+#include <internal/linkage.h>
+
+static PVOID ExAllocatePagedPool(POOL_TYPE Type, ULONG size);
+static PVOID ExAllocateNonPagedPool(POOL_TYPE Type, ULONG size);
+
+#endif /* __INTERNAL_POOL_H */