{-# language CPP #-} -- No documentation found for Chapter "FuncPointers" module Vulkan.Core10.FuncPointers ( PFN_vkVoidFunction , FN_vkVoidFunction ) where import Foreign.Ptr (FunPtr) type FN_vkVoidFunction = () -> IO () -- | PFN_vkVoidFunction - Placeholder function pointer type returned by -- queries -- -- = Parameters -- -- This type is returned from command function pointer queries, and /must/ -- be -- -- = Description -- -- cast to an actual command function pointer before use. -- -- = See Also -- -- , -- 'Vulkan.Core10.DeviceInitialization.getDeviceProcAddr', -- 'Vulkan.Core10.DeviceInitialization.getInstanceProcAddr' type PFN_vkVoidFunction = FunPtr FN_vkVoidFunction