diff options
author | kbr <[email protected]> | 2006-02-20 01:34:37 +0000 |
---|---|---|
committer | kbr <[email protected]> | 2006-02-20 01:34:37 +0000 |
commit | 68a842cc62f12e6372c804708690e31169368c30 (patch) | |
tree | bfe6c1310f5caa115251964d6b0ee2a53852cbba /make/joal-alc-CustomJavaCode.java | |
parent | 48e6e34ebc8747ef80a4c74c18679f027a8172f0 (diff) |
Added alcGetDeviceSpecifiers to support alcGetString(null, ALC_DEVICE_SPECIFIER);
rewrote alcGetString to use same underlying routine
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@113 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'make/joal-alc-CustomJavaCode.java')
-rwxr-xr-x | make/joal-alc-CustomJavaCode.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/make/joal-alc-CustomJavaCode.java b/make/joal-alc-CustomJavaCode.java new file mode 100755 index 0000000..8efba6e --- /dev/null +++ b/make/joal-alc-CustomJavaCode.java @@ -0,0 +1,6 @@ +/** Entry point (through function pointer) to C language function: <br> <code> const ALCchar * alcGetString(ALCdevice * device, ALCenum param); </code> */ +public java.lang.String alcGetString(ALCdevice device, int param); + +/** Fetches the names of the available ALC device specifiers. + Equivalent to the C call alcGetString(NULL, ALC_DEVICE_SPECIFIER). */ +public java.lang.String[] alcGetDeviceSpecifiers(); |