Fixed callback

This commit is contained in:
Brian Matzon 2004-08-20 06:19:31 +00:00
parent e19019f91a
commit 985740a733
1 changed files with 1 additions and 3 deletions

View File

@ -33,8 +33,6 @@ package org.lwjgl.fmod3.callbacks;
import java.nio.ByteBuffer;
import org.lwjgl.fmod3.FSoundStream;
/**
* This interface describes a callback interface to Fmod music
* $Id$
@ -43,5 +41,5 @@ import org.lwjgl.fmod3.FSoundStream;
* @version $Revision$
*/
public interface FSoundMetaDataCallback {
public void FSOUND_STREAMCALLBACK(FSoundStream stream, ByteBuffer buff, int len);
public void FSOUND_METADATACALLBACK(ByteBuffer name, ByteBuffer value);
}