cuticle/hi/microphone.h

18 lines
314 B
C
Raw Normal View History

2024-06-26 20:47:26 +03:00
#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