rem: getProcAddress removed, since it serves no purpose for Java programmers

This commit is contained in:
Brian Matzon 2002-09-06 23:36:48 +00:00
parent 8349dc96f6
commit c109f47de2
6 changed files with 0 additions and 71 deletions

View file

@ -260,15 +260,6 @@ public class ALC {
*/
public native boolean isExtensionPresent(ALCdevice device, String extName);
/**
* Retrieves the address of a specified context extension function.
*
* @param device device to query
* @param extName name of extension to find
* @return address of function
*/
public native int getProcAddress(ALCdevice device, String extName);
/**
* retrieves the enum value for a specified enumeration name.
*

View file

@ -164,14 +164,6 @@ public class CoreAL extends BaseAL implements BaseALConstants {
*/
public native boolean isExtensionPresent(String fname);
/**
* Returns the address of an OpenAL extension function.
*
* @param fname String containing the function name
* @return int specifying offset of extension
*/
public native int getProcAddress(String fname);
/**
* Returns the enumeration value of an OpenAL enum described by a string.
*