reactos/reactos/ntoskrnl/include/internal/pool.h
Casper Hornstrup 514cb6a689 Raw IP and ICMP fixes
More work on winsock stack (not usable yet though)
Support for loading symbols for user mode modules

svn path=/trunk/; revision=1941
2001-06-04 11:26:13 +00:00

14 lines
318 B
C

#ifndef __INTERNAL_POOL_H
#define __INTERNAL_POOL_H
PVOID STDCALL ExAllocateNonPagedPoolWithTag (POOL_TYPE type,
ULONG size,
ULONG Tag,
PVOID Caller);
PVOID STDCALL ExAllocatePagedPoolWithTag (POOL_TYPE Type,
ULONG size,
ULONG Tag);
#endif /* __INTERNAL_POOL_H */