/usr/src/castle-game-engine-5.2.0/audio/openal_alut.inc is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | { translation of AL/alut.h }
var
alutInit : procedure(var argc: CInt; argv: PPChar); extdecl;
alutExit : procedure(); extdecl;
alutLoadWAV : function( fname:PChar; var wave:PALvoid;
var format, size, bits, freq:TALsizei ):TALboolean; extdecl;
alutLoadWAVFile : procedure(afile:PChar;
var format:TALenum; var data:PALvoid; var size, freq:TALsizei;
var loop:TALboolean); extdecl;
alutLoadWAVMemory : procedure(memory:PALbyte;
var format:TALenum; var data:PALvoid; var size, freq:TALsizei;
var loop:TALboolean); extdecl;
alutUnloadWAV : procedure(format:TALenum; data:PALvoid;
size, freq:TALsizei); extdecl;
|