moved #ifdef _cplusplus

This commit is contained in:
Abramo Bagnara 2001-02-01 07:52:30 +00:00
parent e3bdf9a022
commit f0be454aa1
4 changed files with 12 additions and 12 deletions

View file

@ -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);