{-# OPTIONS_GHC -Wall -fno-warn-tabs #-}

module Gpu.Vulkan.AllocationCallbacks (

	-- * CREATE

	create, Functions, FunctionsInfo(..),

	-- ** Function Types

	FnAllocationFunction, FnReallocationFunction, FnFreeFunction,
	FnInternalAllocationNotification, FnInternalFreeNotification,

	-- *** Size and Alignment

	Size, Alignment,

	-- * APPLY

	apply, A, ToMiddle

	) where

import Gpu.Vulkan.AllocationCallbacks.Internal