Fixed warning C4152: nonstandard extension, function/data pointer conversion in expression

This commit is contained in:
Sam Lantinga 2024-01-19 06:36:05 -08:00
parent 9fc1135e3b
commit b566bfce07
8 changed files with 11 additions and 11 deletions

View file

@ -69,7 +69,7 @@ struct SDL_Thread
int(SDLCALL *userfunc)(void *);
void *userdata;
void *data;
void *endfunc; /* only used on some platforms. */
SDL_FunctionPointer endfunc; /* only used on some platforms. */
};
/* This is the function called to run a thread */