mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-28 07:29:09 +00:00
Add missing '\param' documentation
This commit is contained in:
parent
ce366facaa
commit
43c08170af
12 changed files with 83 additions and 9 deletions
include/SDL3
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue