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.
/* BASSWV 2.4 Java class//w w w . j a va2 s .c om Copyright (c) 2007-2012 Un4seen Developments Ltd. See the BASSWV.CHM file for more detailed documentation */ package com.un4seen.bass; import java.nio.ByteBuffer; public class BASSWV { // BASS_CHANNELINFO type public static final int BASS_CTYPE_STREAM_WV = 0x10500; public static native int BASS_WV_StreamCreateFile(String file, long offset, long length, int flags); public static native int BASS_WV_StreamCreateFile(ByteBuffer file, long offset, long length, int flags); public static native int BASS_WV_StreamCreateURL(String url, int offset, int flags, BASS.DOWNLOADPROC proc, Object user); public static native int BASS_WV_StreamCreateFileUser(int system, int flags, BASS.BASS_FILEPROCS procs, Object user); static { System.loadLibrary("basswv"); } }