Exemplo n.º 1
0
 public static int BASS_OFR_StreamCreateFile(IntPtr memory, long offset, long length, BASSFlag flags)
 {
     return(BassOfr.BASS_OFR_StreamCreateFileMemory(true, memory, offset, length, flags));
 }
Exemplo n.º 2
0
 public static int BASS_OFR_StreamCreateFile(string file, long offset, long length, BASSFlag flags)
 {
     flags |= BASSFlag.BASS_UNICODE;
     return(BassOfr.BASS_OFR_StreamCreateFileUnicode(false, file, offset, length, flags));
 }