https://bugs.winehq.org/show_bug.cgi?id=42166
Bug ID: 42166 Summary: Custom application needs mf3216.dll (32-bit to 16-bit metafile converter) Product: Wine Version: 2.0-rc3 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net Distribution: ---
Hello folks,
found the app in an email attachment ... stuff normal users shouldn't run ;-)
--- snip --- $ WINEDEBUG=+tid,+seh,+relay wine ./foobar.exe >>log.txt 2>&1 ... 004f:Call KERNEL32.__wine_kernel_init() ret=7bc6993d 004f:err:module:import_dll Library mf3216.dll (which is needed by L"Z:\home\focht\Downloads\foobar.exe") not found 004f:err:module:LdrInitializeThunk Main exe initialization for L"Z:\home\focht\Downloads\foobar.exe" failed, status c0000135 ... --- snip ---
Relevant part of import table:
--- snip --- ... 4. ImageImportDescriptor: OriginalFirstThunk: 0x0000B289 TimeDateStamp: 0x00000000 (GMT: Thu Jan 01 00:00:00 1970) ForwarderChain: 0x00000000 Name: 0x0000B6D9 ("mf3216.dll") FirstThunk: 0x0000A104
Ordinal/Hint API name ------------ --------------------------------------- 0x0000 "ConvertEmfToWmf" ... --- snip ---
'ConvertEmfToWmf' API entry is pretty much the same as gdiplus 'GdipEmfToWmfBits' (as the name implies).
The import isn't called yet as the app suffers from multiple issues prior hence only a stub dll is needed for now.
$ sha1sum foobar.exe dd1463df107376e9fd1574ccfebabc5fd3ae8f2e foobar.exe
$ du -sh foobar.exe 592K foobar.exe
$ wine --version wine-2.0-rc3-14-g56959b1
Regards