mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-16 08:56:42 -05:00
moved #ifdef _cplusplus
This commit is contained in:
parent
e3bdf9a022
commit
f0be454aa1
4 changed files with 12 additions and 12 deletions
|
|
@ -1,8 +1,4 @@
|
|||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct _snd_input snd_input_t;
|
||||
|
||||
typedef enum _snd_input_type {
|
||||
|
|
@ -10,6 +6,10 @@ typedef enum _snd_input_type {
|
|||
SND_INPUT_BUFFER,
|
||||
} snd_input_type_t;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int snd_input_stdio_open(snd_input_t **inputp, const char *file);
|
||||
int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int close);
|
||||
int snd_input_buffer_open(snd_input_t **inputp, const char *buffer, int size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue