Displaying 5 results from an estimated 5 matches for "error_callback_".
Did you mean:
error_callback
2004 Oct 14
2
compile errors
...error before ')' token
plugin.c:491: warning: unused parameter `client_data'
plugin.c: In function `metadata_callback_':
plugin.c:553: error: `file_info' undeclared (first use in this function)
plugin.c:553: error: syntax error before ')' token
plugin.c: In function `error_callback_':
plugin.c:574: error: `file_info' undeclared (first use in this function)
plugin.c:574: error: syntax error before ')' token
plugin.c: In function `metadata_callback_':
plugin.c:551: warning: unused parameter `client_data'
plugin.c: In function `error_callback_':
p...
2004 Oct 14
0
compile errors
...> plugin.c:491: warning: unused parameter `client_data'
> plugin.c: In function `metadata_callback_':
> plugin.c:553: error: `file_info' undeclared (first use in this
> function)
> plugin.c:553: error: syntax error before ')' token
> plugin.c: In function `error_callback_':
> plugin.c:574: error: `file_info' undeclared (first use in this
> function)
> plugin.c:574: error: syntax error before ')' token
> plugin.c: In function `metadata_callback_':
> plugin.c:551: warning: unused parameter `client_data'
> plugin.c: In func...
2004 Oct 15
1
compile errors
...ing: unused parameter `client_data'
> > plugin.c: In function `metadata_callback_':
> > plugin.c:553: error: `file_info' undeclared (first use in this
> > function)
> > plugin.c:553: error: syntax error before ')' token
> > plugin.c: In function `error_callback_':
> > plugin.c:574: error: `file_info' undeclared (first use in this
> > function)
> > plugin.c:574: error: syntax error before ')' token
> > plugin.c: In function `metadata_callback_':
> > plugin.c:551: warning: unused parameter `client_data'...
2004 Sep 10
0
http streaming in the xmms plugin
...AC__StreamDecoderWriteStatus write_callback_(const FLAC__FileDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
! static void metadata_callback_(const FLAC__FileDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
! static void error_callback_(const FLAC__FileDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
InputPlugin flac_ip =
{
--- 112,126 ----
static void FLAC_XMMS__get_song_info(char *filename, char **title, int *length);
static void *play_loop_(void *arg);
! static FLAC__bool safe_decoder_i...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...c void FLAC_XMMS__get_song_info(char *filename, char **title, int *length);
static void *play_loop_(void *arg);
@@ -128,7 +128,7 @@ static FLAC__StreamDecoderWriteStatus wr
static void metadata_callback_(const void *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
static void error_callback_(const void *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
-static void init_decoder_func_tables();
+static void init_decoder_func_tables(void);
static decoder_t source_to_decoder_type (const char *source);
InputPlugin flac_ip =
@@ -181,7 +181,7 @@ static const decoder_fu...