http://bugs.winehq.org/show_bug.cgi?id=35375
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |focht@gmx.net Summary|Unimplemented function |Solidworks 2013 systray |COMCTL32.dll.380 |monitor 'sldprocmon.exe' | |needs COMCTL32.dll.380 | |(LoadIconMetric, Vista Ever confirmed|0 |1
--- Comment #1 from Anastasius Focht focht@gmx.net --- Hello denis,
this error is probably the result of native 'shlwapi.dll' and WinVer set to "Windows Vista" or greater in WINEPREFIX:
--- snip --- Module Address Debug info Name (71 modules) ... PE 77f60000-77fd6000 Deferred shlwapi ... --- snip ---
Any reason for this? Mixing those dlls with Wine builtin components should be avoided unless absolutely required.
Normally this bug would be invalid (API triggered by use of native dlls) but this specific case could be of some interest.
"Ordinal 380 not found in ComCtrl32.dll" search reveals some interesting entries:
https://stackoverflow.com/questions/4098076/does-windows-preload-comctrl32-d...
Ordinal 380 is LoadIconMetric(), a Vista+ API, exposed in Common Control library v6.10 (Windows Vista, Windows Server 2008, and Windows 7)
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/bb775701%28v=vs.85%2...
--- quote --- LoadIconMetric function
Loads a specified icon resource with a client-specified system metric.
HRESULT LoadIconMetric( _In_ HINSTANCE hinst, _In_ PCWSTR pszName, _In_ int lims, _Out_ HICON *phico ); ... --- quote ---
Regards