| 510 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void sound_write_samples (IntPtr sound, [In ] float[] samples, ulong sample_count); |
| 511 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void sound_write_samples (IntPtr sound, IntPtr samples, ulong sample_count); |
| 512 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern ulong sound_read_samples (IntPtr sound, [Out] float[] out_samples, ulong sample_count); |
| 513 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern ulong sound_read_samples (IntPtr sound, IntPtr out_samples, ulong sample_count); |
| 514 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern ulong sound_unread_samples(IntPtr sound); |
| 515 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern ulong sound_total_samples (IntPtr sound); |