Displaying 1 result from an estimated 1 matches for "oggflac_api".
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...AC_plugin__charset_convert_string(const char *string, char *from, char *to);
/* returns 1 for success, 0 for failure or no iconv */
--- src/libOggFLAC/file_encoder.c-dist 2005-05-25 16:07:23.000000000 +0200
+++ src/libOggFLAC/file_encoder.c 2005-05-25 16:07:27.000000000 +0200
@@ -100,7 +100,7 @@ OggFLAC_API const char * const OggFLAC__
*
***********************************************************************/
-OggFLAC_API OggFLAC__FileEncoder *OggFLAC__file_encoder_new()
+OggFLAC_API OggFLAC__FileEncoder *OggFLAC__file_encoder_new(void)
{
OggFLAC__FileEncoder *encoder;
--- src/libOggFLAC/fi...