From e4b5dd29874c5746a35e9b3b8c8cfd01ffa4363a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 25 Jun 2019 08:26:05 +0200 Subject: win32: make DLL loading a no-op for UWP Reported-by: Michael Brehm Fixes #4060 Closes #4072 --- lib/system_win32.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/system_win32.c') diff --git a/lib/system_win32.c b/lib/system_win32.c index 1143fa6aa..52a5fd951 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 */ -- cgit v1.2.3