[Bug 59657] New: Xara Designer Pro + fails to start (needs file_operation_CopyItem from shell32)
http://bugs.winehq.org/show_bug.cgi?id=59657 Bug ID: 59657 Summary: Xara Designer Pro + fails to start (needs file_operation_CopyItem from shell32) Product: Wine Version: 11.6 Hardware: x86-64 URL: https://www.xara.com/designerpro-plus/ OS: Linux Status: NEW Keywords: download Severity: normal Priority: P2 Component: shell32 Assignee: wine-bugs@list.winehq.org Reporter: xerox.xerox2000x@gmail.com Distribution: Debian This was reported garbage in appdb, so I gave it a try. To download the trial, you only have to enter emailaddress + select two dropboxes, so quite easy. There's actually two bugs to solve apparently, I'll open another bugreport for the 1st issue (I have to ruyn with WINEDLLOVERRIDES=icuuc=n ) . The program just exits silently after a few fixmes, last one is: 0414:fixme:shell:file_operation_CopyItem (00007F633E476600, 00007F633E472280, 00007F633E4722B0, (null), 0000000000000000): stub. Sad hack below to just return file_operation_MoveItem (which is implemented) allows the program to start, so it just needs a proper file_operation_CopyItem apparently. Hack: diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 3f4d4416254..99645dfa651 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -2236,7 +2236,9 @@ static HRESULT WINAPI file_operation_CopyItem(IFileOperation *iface, IShellItem { FIXME("(%p, %p, %p, %s, %p): stub.\n", iface, item, folder, debugstr_w(name), sink); - return E_NOTIMPL; +add_operation(impl_from_IFileOperation(iface), COPY_ENGINE_MOVE, item, folder, name, sink, + TSF_COPY_LOCALIZED_NAME | TSF_COPY_WRITE_TIME | TSF_COPY_CREATION_TIME | TSF_OVERWRITE_EXIST, NULL); + } static HRESULT WINAPI file_operation_CopyItems(IFileOperation *iface, IUnknown *items, IShellItem *folder) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
WineHQ Bugzilla