packages feed

al 0.1.0.2 → 0.1.0.3

raw patch · 3 files changed

+10/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,3 +1,11 @@+## 0.1.0.3++- Fixed alcOpenDevice.++## 0.1.0.2++- Default paths for Windows.+ ## 0.1.0.1  - .cabal information added.
al.cabal view
@@ -1,5 +1,5 @@ name:                al
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            OpenAL 1.1 raw API.
 description:         __OpenAL__ is a minimalistic sound API that aims to provide
                      bare features for /spacialized audio/. The API looks like
src/Sound/ALC/Device.chs view
@@ -15,5 +15,5 @@ import Sound.AL.Types import Sound.ALC.Types -foreign import CALLCV "alcOpenDevice" alcOpenDevice :: ALubyte -> IO (Ptr ALCdevice)+foreign import CALLCV "alcOpenDevice" alcOpenDevice :: Ptr ALubyte -> IO (Ptr ALCdevice) foreign import CALLCV "alcCloseDevice" alcCloseDevice :: Ptr ALCdevice -> IO ()