OSDN Git Service

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 b2ef673..18135ac 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 0925b75..7ed320b 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 c2dbf74..c230194 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 965ab7c..67e6136 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);