mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-22 11:01:09 +00:00
SDL_dynapi.c: LoadLibraryA() returns HMODULE.
This commit is contained in:
parent
78d3a713de
commit
0a8f9777a7
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue