| 531 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern int mic_device_count(); |
| 532 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr mic_device_name (int index); |
| 533 | [return: MarshalAs(UnmanagedType.Bool)] |
| 534 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool mic_start (string device_name); |
| 535 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void mic_stop (); |
| 536 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr mic_get_stream (); |
| 537 | [return: MarshalAs(UnmanagedType.Bool)] |