mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-27 10:57:22 +08:00
SDL_dynapi.c: LoadLibraryA() returns HMODULE.
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user