#![allow(
non_camel_case_types,
non_snake_case,
clippy::let_unit_value,
clippy::missing_safety_doc,
clippy::too_many_arguments,
clippy::type_complexity,
clippy::upper_case_acronyms
)]
use std::os::raw::{c_char, c_void};
use crate::*;
pub type PFN_vkAllocationFunction = Option<
unsafe extern "system" fn(*mut c_void, usize, usize, SystemAllocationScope) -> *mut c_void,
>;
pub type PFN_vkDebugReportCallbackEXT = Option<
unsafe extern "system" fn(
DebugReportFlagsEXT,
DebugReportObjectTypeEXT,
u64,
usize,
i32,
*const c_char,
*const c_char,
*mut c_void,
) -> Bool32,
>;
pub type PFN_vkDebugUtilsMessengerCallbackEXT = Option<
unsafe extern "system" fn(
DebugUtilsMessageSeverityFlagsEXT,
DebugUtilsMessageTypeFlagsEXT,
*const DebugUtilsMessengerCallbackDataEXT,
*mut c_void,
) -> Bool32,
>;
pub type PFN_vkDeviceMemoryReportCallbackEXT =
Option<unsafe extern "system" fn(*const DeviceMemoryReportCallbackDataEXT, *mut c_void)>;
pub type PFN_vkFreeFunction = Option<unsafe extern "system" fn(*mut c_void, *mut c_void)>;
pub type PFN_vkGetInstanceProcAddrLUNARG =
Option<unsafe extern "system" fn(Instance, *const c_char) -> PFN_vkVoidFunction>;
pub type PFN_vkInternalAllocationNotification = Option<
unsafe extern "system" fn(*mut c_void, usize, InternalAllocationType, SystemAllocationScope),
>;
pub type PFN_vkInternalFreeNotification = Option<
unsafe extern "system" fn(*mut c_void, usize, InternalAllocationType, SystemAllocationScope),
>;
pub type PFN_vkReallocationFunction = Option<
unsafe extern "system" fn(
*mut c_void,
*mut c_void,
usize,
usize,
SystemAllocationScope,
) -> *mut c_void,
>;
pub type PFN_vkVoidFunction = Option<unsafe extern "system" fn()>;