fix send via email
[maemo-recorder] / src / maemo-recorder-au.h
index 8b674f1..3d2b792 100644 (file)
@@ -28,6 +28,8 @@
 
 #include <stdio.h>
 
+G_BEGIN_DECLS
+
 #define AU_MAGIC ((uint32_t) 0x2e736e64) /* ".snd" */
 #define AU_SIZE_UNKNOWN (~0)    /* (unsigned) -1 */
 
@@ -44,7 +46,7 @@ enum
     AU_ENCODING_ADPCM_G722 = 24,    /* CCITT g.722 ADPCM */ 
     AU_ENCODING_ADPCM_G723_3 = 25,  /* CCITT g.723 3-bit ADPCM */ 
     AU_ENCODING_ADPCM_G723_5 = 26,  /* CCITT g.723 5-bit ADPCM */ 
-    AU_ENCODING_ALAW_8 = 27,    /* 8-bit ISDN A-law */
+    AU_ENCODING_ALAW_8 = 27    /* 8-bit ISDN A-law */
 };
 
 struct au_header 
@@ -71,4 +73,6 @@ gint au_copy_data(GnomeVFSHandle *to_handle, GnomeVFSHandle *from_handle, guint3
 
 guint32 au_get_encoding(AudioFormat format);
 
+G_END_DECLS
+
 #endif