mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-04-30 07:46:33 +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>
|
#include <windows.h>
|
||||||
static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym)
|
static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym)
|
||||||
{
|
{
|
||||||
HANDLE lib = LoadLibraryA(fname);
|
HMODULE lib = LoadLibraryA(fname);
|
||||||
void *retval = NULL;
|
void *retval = NULL;
|
||||||
if (lib) {
|
if (lib) {
|
||||||
retval = GetProcAddress(lib, sym);
|
retval = GetProcAddress(lib, sym);
|
||||||
|
|
Loading…
Reference in a new issue