aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAbramo Bagnara <abramo@alsa-project.org>2001-02-01 07:52:30 +0000
committerAbramo Bagnara <abramo@alsa-project.org>2001-02-01 07:52:30 +0000
commitf0be454aa102ad8bf0cbd9c230b6e7fbc7383868 (patch)
treeac781340b1f0bef295c9ccfa6404c1aebfe85be0 /include
parente3bdf9a022a64ffcf9ff546bfb354516db553d2e (diff)
moved #ifdef _cplusplus
Diffstat (limited to 'include')
-rw-r--r--include/hwdep.h4
-rw-r--r--include/input.h8
-rw-r--r--include/output.h8
-rw-r--r--include/seq_midi_event.h4
4 files changed, 12 insertions, 12 deletions
diff --git a/include/hwdep.h b/include/hwdep.h
index b2ef6738..18135ac1 100644
--- a/include/hwdep.h
+++ b/include/hwdep.h
@@ -22,12 +22,12 @@ typedef struct sndrv_hwdep_info snd_hwdep_info_t;
#define SND_HWDEP_OPEN_DUPLEX (O_RDWR)
#define SND_HWDEP_OPEN_NONBLOCK (O_NONBLOCK)
+typedef struct _snd_hwdep snd_hwdep_t;
+
#ifdef __cplusplus
extern "C" {
#endif
-typedef struct _snd_hwdep snd_hwdep_t;
-
int snd_hwdep_open(snd_hwdep_t **handle, int card, int device, int mode);
int snd_hwdep_close(snd_hwdep_t *handle);
int snd_hwdep_poll_descriptor(snd_hwdep_t *handle);
diff --git a/include/input.h b/include/input.h
index 0925b75a..7ed320b8 100644
--- a/include/input.h
+++ b/include/input.h
@@ -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);
diff --git a/include/output.h b/include/output.h
index c2dbf742..c2301949 100644
--- a/include/output.h
+++ b/include/output.h
@@ -1,8 +1,4 @@
-#ifdef __cplusplus
-extern "C" {
-#endif
-
typedef struct _snd_output snd_output_t;
typedef enum _snd_output_type {
@@ -10,6 +6,10 @@ typedef enum _snd_output_type {
SND_OUTPUT_BUFFER,
} snd_output_type_t;
+#ifdef __cplusplus
+extern "C" {
+#endif
+
int snd_output_stdio_open(snd_output_t **outputp, const char *file);
int snd_output_stdio_attach(snd_output_t **outputp, FILE *fp, int close);
int snd_output_buffer_open(snd_output_t **outputp);
diff --git a/include/seq_midi_event.h b/include/seq_midi_event.h
index 965ab7c8..67e6136f 100644
--- a/include/seq_midi_event.h
+++ b/include/seq_midi_event.h
@@ -4,12 +4,12 @@
* *
****************************************************************************/
+typedef struct snd_midi_event snd_midi_event_t;
+
#ifdef __cplusplus
extern "C" {
#endif
-typedef struct snd_midi_event snd_midi_event_t;
-
int snd_midi_event_new(int bufsize, snd_midi_event_t **rdev);
int snd_midi_event_resize_buffer(snd_midi_event_t *dev, int bufsize);
void snd_midi_event_free(snd_midi_event_t *dev);