Changes against latest doxygen

This commit is contained in:
Jaroslav Kysela 2002-02-04 11:18:39 +00:00
parent 5dc9be757c
commit a92f910569
8 changed files with 99 additions and 22 deletions

View file

@ -115,9 +115,15 @@ int snd_instr_fm_convert_to_stream(snd_instr_fm_t *fm,
* \param simple Result - allocated FM instrument handle
* \return 0 on success otherwise a negative error code
*/
#ifndef DOXYGEN
int snd_instr_fm_convert_from_stream(snd_instr_header_t *__data ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED,
snd_instr_fm_t **simple ATTRIBUTE_UNUSED)
#else
int snd_instr_fm_convert_from_stream(snd_instr_header_t *__data,
size_t size,
snd_instr_fm_t **simple)
#endif
{
/* TODO */
return -ENXIO;

View file

@ -343,7 +343,11 @@ int snd_instr_iwffff_open_rom(snd_iwffff_handle_t **handle, int card, int bank,
* \param file ROM file number
* \return 0 on success otherwise a negative error code
*/
#ifndef DOXYGEN
int snd_instr_iwffff_open_rom_file(snd_iwffff_handle_t **handle ATTRIBUTE_UNUSED, const char *name ATTRIBUTE_UNUSED, int bank ATTRIBUTE_UNUSED, int file ATTRIBUTE_UNUSED)
#else
int snd_instr_iwffff_open_rom_file(snd_iwffff_handle_t **handle, const char *name, int bank, int file)
#endif
{
/* TODO */
return -ENXIO;
@ -899,9 +903,15 @@ int snd_instr_iwffff_convert_to_stream(snd_instr_iwffff_t *iwffff,
* \param iwffff Result - allocated IWFFFF instrument handle
* \return 0 on success otherwise a negative error code
*/
#ifndef DOXYGEN
int snd_instr_iwffff_convert_from_stream(snd_instr_header_t *data ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED,
snd_instr_iwffff_t **iwffff ATTRIBUTE_UNUSED)
#else
int snd_instr_iwffff_convert_from_stream(snd_instr_header_t *data,
size_t size,
snd_instr_iwffff_t **iwffff)
#endif
{
/* TODO */
return -ENXIO;

View file

@ -123,9 +123,15 @@ int snd_instr_simple_convert_to_stream(snd_instr_simple_t *simple,
* \param simple Result - simple instrument handle
* \return 0 on success otherwise a negative error code
*/
#ifndef DOXYGEN
int snd_instr_simple_convert_from_stream(snd_instr_header_t *__data ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED,
snd_instr_simple_t **simple ATTRIBUTE_UNUSED)
#else
int snd_instr_simple_convert_from_stream(snd_instr_header_t *__data,
size_t size,
snd_instr_simple_t **simple)
#endif
{
/* TODO */
return -ENXIO;