18 lines
314 B
C
18 lines
314 B
C
|
#ifndef _CUTIHI_MICROPHONE_H
|
||
|
#define _CUTIHI_MICROPHONE_H
|
||
|
|
||
|
#include<stddef.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
CUTIVIS size_t CHi_Microphone_GetSourceCount();
|
||
|
CUTIVIS const char *CHi_Microphone_GetSourceName(size_t);
|
||
|
CUTIVIS size_t CHi_Microphone_GetNextSource(size_t);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|