blob: 8efba6e8daf47ff40994a7d13a2392c260eaf4ee (
plain)
1
2
3
4
5
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();
|