https://bugs.winehq.org/show_bug.cgi?id=26350
winetest@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |winetest@luukku.com
--- Comment #4 from winetest@luukku.com --- I didnt test this bug but I was searching what some wine console output was trying to say and I found this.
http://source.winehq.org/git/wine.git/blob/c0b30432ea76334811e43ccef14a7190f...
910 static const DWORD unsupported_flags = 911 LOAD_IGNORE_CODE_AUTHZ_LEVEL | 912 LOAD_LIBRARY_AS_IMAGE_RESOURCE | 913 LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE | 914 LOAD_LIBRARY_REQUIRE_SIGNED_TARGET | 915 LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR | 916 LOAD_LIBRARY_SEARCH_APPLICATION_DIR | 917 LOAD_LIBRARY_SEARCH_USER_DIRS | 918 LOAD_LIBRARY_SEARCH_SYSTEM32 | 919 LOAD_LIBRARY_SEARCH_DEFAULT_DIRS; 920 921 if( flags & unsupported_flags) 922 FIXME("unsupported flag(s) used (flags: 0x%08x)\n", flags);
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85).a...
Lots of flags are unimplemented.