----------------------------------------------------------------------------- -- | -- Copyright : (C) 2015 Dimitri Sabadie -- License : BSD3 -- -- Maintainer : Dimitri Sabadie -- Stability : experimental -- Portability : portable ---------------------------------------------------------------------------- module Sound.ALC.Device where import Foreign.C.Types import Foreign.Ptr ( Ptr ) import Sound.AL.Types import Sound.ALC.Types foreign import CALLCV alcOpenDevice :: Ptr ALubyte -> IO (Ptr ALCdevice) foreign import CALLCV alcCloseDevice :: Ptr ALCdevice -> IO ()