aboutsummaryrefslogtreecommitdiff
path: root/src/alloc/pool.rs
blob: 5b120ac194b2193487c5af1b116702764435e2e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[repr(C)]
pub enum POOL_TYPE
{
	PagedPool,
}

pub type PVOID = *mut u8;

extern "system"
{
	pub fn ExAllocatePoolWithTag(PoolType: POOL_TYPE, NumberOfBytes: usize, Tag: u32) -> PVOID;
	pub fn ExFreePoolWithTag(P: PVOID, Tag: u32);
}