Back to project page DoomPlay.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project DoomPlay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.un4seen.bass; // w w w . j a va 2 s . c om import java.nio.ByteBuffer; public class BASS_APE { // BASS_CHANNELINFO type public static final int BASS_CTYPE_STREAM_APE = 0x10700; public static native int BASS_APE_StreamCreateFile(String file, long offset, long length, int flags); public static native int BASS_APE_StreamCreateFile(ByteBuffer file, long offset, long length, int flags); public static native int BASS_APE_StreamCreateFileUser(int system, int flags, BASS.BASS_FILEPROCS procs, Object user); static { System.loadLibrary("bass_ape"); } }