| 503 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr sound_find (string id); |
| 504 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void sound_set_id (IntPtr sound, string id); |
| 505 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr sound_get_id (IntPtr sound); |
| 506 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr sound_create ([In] byte[] filename_utf8); |
| 507 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr sound_create_stream (float buffer_duration); |
| 508 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr sound_create_samples([In] float[] samples_at_48000s, ulong sample_count); |