Add missing '\param' documentation

This commit is contained in:
Sylvain 2023-02-12 09:40:39 +01:00 committed by Sylvain Becker
parent ce366facaa
commit 43c08170af
12 changed files with 83 additions and 9 deletions
include/SDL3

View file

@ -118,6 +118,14 @@ typedef void (__cdecl * pfnSDL_CurrentEndThread) (unsigned code);
/*
* Create a SDL Thread
*
* \param fn Thread function
* \param name name
* \param data some data
* \param pfnSDL_CurrentBeginThread begin function
* \param pfnSDL_CurrentEndThread end function
*
* \returns SDL_Thread pointer
*/
extern DECLSPEC SDL_Thread *SDLCALL
@ -126,6 +134,15 @@ SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data,
pfnSDL_CurrentEndThread pfnEndThread);
/*
* Create a SDL Thread, with explicit stack size
*
* \param fn Thread function
* \param name name
* \param stacksize stack size
* \param data some data
* \param pfnSDL_CurrentBeginThread begin function
* \param pfnSDL_CurrentEndThread end function
*
* \returns SDL_Thread pointer
*/
extern DECLSPEC SDL_Thread *SDLCALL