Skip to content
Snippets Groups Projects
Commit 467c2535 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf
Browse files

Fix Windows plugin loading for Windows Store App

SetThreadErrorMode is only for desktop mode
parent c76b9768
No related branches found
Tags 3.5.0
No related merge requests found
......@@ -58,14 +58,14 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
return -1;
module_handle_t handle = NULL;
#if (_WIN32_WINNT >= 0x601)
#if (_WIN32_WINNT >= 0x601) && !VLC_WINSTORE_APP
DWORD mode;
if (SetThreadErrorMode (SEM_FAILCRITICALERRORS, &mode) == 0)
#endif
{
handle = LoadLibraryW (wfile);
#if (_WIN32_WINNT >= 0x601)
#if (_WIN32_WINNT >= 0x601) && !VLC_WINSTORE_APP
SetThreadErrorMode (mode, NULL);
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment