]> git.alsa-project.org Git - alsa-lib.git/commitdiff
moved #ifdef _cplusplus
authorAbramo Bagnara <abramo@alsa-project.org>
Thu, 1 Feb 2001 07:52:30 +0000 (07:52 +0000)
committerAbramo Bagnara <abramo@alsa-project.org>
Thu, 1 Feb 2001 07:52:30 +0000 (07:52 +0000)
include/hwdep.h
include/input.h
include/output.h
include/seq_midi_event.h

index b2ef67380a73af96df9752f98e0a555a33526fb0..18135ac1ed657d22b65f8286b948c8ffe45c2c1e 100644 (file)
@@ -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);
index 0925b75a722279e64891fb9a23be699797c9c5ad..7ed320b8b1d0232332aa7d758cfaacee3b6cf8f9 100644 (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);
index c2dbf74297187102435e47b0bccca3064f3606c1..c2301949556aec38703d1984b2ea88e05b9c5e91 100644 (file)
@@ -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);
index 965ab7c86d9fb4a099e0a04bf70e0d4d357f2975..67e6136f77e48a41ac08d7532496bd324cdb4682 100644 (file)
@@ -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);