SDL_dynapi.c: LoadLibraryA() returns HMODULE.

This commit is contained in:
Ozkan Sezer 2022-12-30 11:11:10 +03:00
parent 78d3a713de
commit 0a8f9777a7

View file

@ -361,7 +361,7 @@ SDL_DYNAPI_entry(Uint32 apiver, void *table, Uint32 tablesize)
#include <windows.h>
static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym)
{
HANDLE lib = LoadLibraryA(fname);
HMODULE lib = LoadLibraryA(fname);
void *retval = NULL;
if (lib) {
retval = GetProcAddress(lib, sym);