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 ww .j av a 2s .c o m import java.nio.ByteBuffer; public class BASS_MPC { // BASS_CHANNELINFO type public static final int BASS_CTYPE_STREAM_MPC = 0x10a00; public static native int BASS_MPC_StreamCreateFile(String file, long offset, long length, int flags); public static native int BASS_MPC_StreamCreateFile(ByteBuffer file, long offset, long length, int flags); public static native int BASS_MPC_StreamCreateURL(String url, int offset, int flags, BASS.DOWNLOADPROC proc, Object user); public static native int BASS_MPC_StreamCreateFileUser(int system, int flags, BASS.BASS_FILEPROCS procs, Object user); static { System.loadLibrary("bass_mpc"); } }