use crate::ffi::{c_uint, c_int, uintptr_t};
use crate::port::mach_port_t;
pub type natural_t = c_uint;
pub type integer_t = c_int;
pub type vm_map_t = mach_port_t;
pub type user_addr_t = u64;
pub type mach_vm_address_t = u64;
pub type vm_map_address_t = u64;
pub type vm_address_t = vm_offset_t;
pub type mach_vm_offset_t = u64;
pub type vm_map_offset_t = u64;
pub type vm_offset_t = uintptr_t;
pub type mach_vm_size_t = u64;
pub type vm_map_size_t = u64;
pub type vm_size_t = uintptr_t;
pub type mach_port_context_t = mach_vm_address_t;