Fix some doxygen issues

Updating parameter names for renamed parameters and adding docs for new
parameters.
This commit is contained in:
Bill Currie 2022-06-08 16:14:12 +09:00
parent ed209c3aa4
commit 3e7f2f0578
2 changed files with 3 additions and 2 deletions

View file

@ -84,6 +84,7 @@ extern gamedir_t *qfs_gamedir;
/** Function type of callback called on gamedir change.
\param phase 0 = before Cache_Flush(), 1 = after Cache_Flush()
\param data data pointer passed on to the callback
*/
typedef void gamedir_callback_t (int phase, void *data);

View file

@ -279,7 +279,7 @@ int SND_Memory_GetRetainCount (void *ptr) __attribute__((pure));
\param sfx
\param realname
\param info
\param loader
\param load
*/
void SND_SFX_Block (sfx_t *sfx, char *realname, wavinfo_t info,
sfxbuffer_t *(*load) (sfxblock_t *block));
@ -306,7 +306,7 @@ sfxbuffer_t *SND_SFX_StreamOpen (sfx_t *sfx, void *file,
void (*close) (sfxbuffer_t *));
/** Close a stream.
\param sfx
\param stream
*/
void SND_SFX_StreamClose (sfxstream_t *stream);