/// <summary>
 /// Gets the sound effect's sample data.
 /// </summary>
 /// <param name="data">The sound effect's raw PCM sample data.</param>
 /// <param name="info">The sound effect's sample info.</param>
 /// <returns>The handle to the sound effect's BASS sample.</returns>
 internal UInt32 GetSampleData(out IntPtr data, out BASS_SAMPLE info)
 {
     data = this.data;
     info = this.sampleInfo;
     return sample;
 }
 public static extern Boolean SampleGetInfo(UInt32 handle, out BASS_SAMPLE info);
Exemple #3
0
 public static extern Boolean SampleGetInfo(UInt32 handle, out BASS_SAMPLE info);