]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/openal/alut/other/other.factor
Remove many uses of <int> and *int etc
[factor.git] / extra / openal / alut / other / other.factor
index 8b1cbd0cb35996a8dd50d9e520bab1637202b7a6..73b1aca86e04b6c487128f8a8980cd472f8ff3c1 100755 (executable)
@@ -9,6 +9,9 @@ LIBRARY: alut
 FUNCTION: void alutLoadWAVFile ( c-string fileName, ALenum* format, void** data, ALsizei* size, ALsizei* frequency, ALboolean* looping ) ;
 
 M: object load-wav-file ( filename -- format data size frequency )
-    0 <int> f <void*> 0 <int> 0 <int>
-    [ 0 <char> alutLoadWAVFile ] 4 nkeep
-    { [ *int ] [ *void* ] [ *int ] [ *int ] } spread ;
+    0 int <ref>
+    f <void*>
+    0 int <ref>
+    0 int <ref>
+    [ 0 char <ref> alutLoadWAVFile ] 4 nkeep
+    { [ int deref ] [ *void* ] [ int deref ] [ int deref ] } spread ;