From: Daniel Stenberg Date: Tue, 25 Jun 2019 06:26:05 +0000 (+0200) Subject: win32: make DLL loading a no-op for UWP X-Git-Tag: curl-7_65_2~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4b5dd29874c5746a35e9b3b8c8cfd01ffa4363a;p=thirdparty%2Fcurl.git win32: make DLL loading a no-op for UWP Reported-by: Michael Brehm Fixes #4060 Closes #4072 --- diff --git a/lib/system_win32.c b/lib/system_win32.c index 1143fa6aae..52a5fd9519 100644 --- a/lib/system_win32.c +++ b/lib/system_win32.c @@ -367,6 +367,7 @@ bool Curl_verify_windows_version(const unsigned int majorVersion, */ HMODULE Curl_load_library(LPCTSTR filename) { +#ifndef CURL_WINDOWS_APP HMODULE hModule = NULL; LOADLIBRARYEX_FN pLoadLibraryEx = NULL; @@ -421,8 +422,12 @@ HMODULE Curl_load_library(LPCTSTR filename) free(path); } } - return hModule; +#else + /* the Universal Windows Platform (UWP) can't do this */ + (void)filename; + return NULL; +#endif } #endif /* WIN32 */