]> gitweb.factorcode.org Git - factor.git/blob - extra/openal/alut/other/other.factor
8b1cbd0cb35996a8dd50d9e520bab1637202b7a6
[factor.git] / extra / openal / alut / other / other.factor
1 ! Copyright (C) 2007 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien.c-types alien.syntax combinators generalizations
4 kernel openal openal.alut.backend ;
5 IN: openal.alut.other
6
7 LIBRARY: alut
8
9 FUNCTION: void alutLoadWAVFile ( c-string fileName, ALenum* format, void** data, ALsizei* size, ALsizei* frequency, ALboolean* looping ) ;
10
11 M: object load-wav-file ( filename -- format data size frequency )
12     0 <int> f <void*> 0 <int> 0 <int>
13     [ 0 <char> alutLoadWAVFile ] 4 nkeep
14     { [ *int ] [ *void* ] [ *int ] [ *int ] } spread ;