http://bugs.winehq.org/show_bug.cgi?id=36757
Bug ID: 36757 Summary: Microsoft Visual Studio 2005 Express reports 'object does not support this action' during project creation (needs IFileSystem::GetDriveName method impl) Product: Wine Version: 1.7.20 Hardware: x86 OS: Linux Status: NEW Severity: normal Priority: P2 Component: scrrun Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net
Hello folks,
as the summary says.
Create 'empty' project type (any other type won't work due to multiple known bugs).
--- snip --- 0009:fixme:scrrun:filesys_GetDriveName 0x7e14649c L"C:\users\focht\My Documents\Visual Studio 2005\Projects\test\test" 0x3164dc 0009:fixme:seh:_abnormal_termination (void)stub 0009:trace:loaddll:free_modref Unloaded module L"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\VsWizard.dll" : native 0009:trace:loaddll:free_modref Unloaded module L"C:\windows\system32\msvcp80.dll" : builtin 0009:trace:msgbox:MSGBOX_OnInit L"Object doesn't support this action" --- snip ---
Source: http://source.winehq.org/git/wine.git/blob/2b76dfba97825ff7a7f56efd2085d38ef...
--- snip --- 2940 static HRESULT WINAPI filesys_GetDriveName(IFileSystem3 *iface, BSTR Path, 2941 BSTR *pbstrResult) 2942 { 2943 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult); 2944 2945 return E_NOTIMPL; 2946 } --- snip ---
$ sha1sum VC.iso 1ae44e4eaf8c61c3a39e573fd6efd9889e940529 VC.iso
$ du -sh VC.iso 463M VC.iso
$ wine --version wine-1.7.20-62-g0b30276
Regards