http://bugs.winehq.org/show_bug.cgi?id=5294
------- Additional Comments From focht(a)gmx.net 2007-17-05 08:28 -------
Hello,
--- quote ---
The first crash was actually due to missing stuff in msxml3 and that is still
not fixed, right?
So i suggest to leave this bug open for now.
--- quote ---
Yes, wine msxml3 is the remaining issue.
In the meantime, people can just 'winetricks msxml3' to test this application
further ... to report more bugs :-)
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5774
------- Additional Comments From furex.furetto+wine(a)gmail.com 2007-17-05 08:28 -------
A quick search on uTorrent's own forum revealed that the current version (1.7)
is supposed to work fine under Wine with no patches. This post lists the current
issues, DHT is not listed, maybe Ludde changed uT to circumvent that bug :-?
http://forum.utorrent.com/viewtopic.php?pid=250264#p250264
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5774
------- Additional Comments From pecanin(a)alice.it 2007-17-05 08:19 -------
result is 0.... no bug for me... it's strange... emule is affected, but uT is
not...
Where can i find the patch to try emule?
If there was a new version of aMule with protocol obfuscation I did not need
to use emule with wine.. util the bug is not fixed or a new version of amule
is released i'm using VMware under linux with a WindowsXP virtual mchine that
wor perfectly with emule :-)))
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7447
------- Additional Comments From focht(a)gmx.net 2007-17-05 08:17 -------
Hello,
another random pick.
Version 3.x wasnt available anymore but newer ones (5.x) exhibit same behaviour.
I added missing implementations to let application startup succeed.
--- snip dlls/shell32/iconcache.c ---
/****************************************************************************
* SHGetIconOverlayIndexW [SHELL32.@]
*/
INT WINAPI SHGetIconOverlayIndexW( LPCWSTR pszIconPath, int iIconIndex)
{
TRACE("%s %d\n", debugstr_w(pszIconPath), iIconIndex);
/* windows tolerates NULL IconPath, returning standard icons
(using icon cache manager) for the specific indizes
returning -1 now, because wine doesnt handle this case */
if( pszIconPath == NULL)
return -1;
return SIC_GetIconIndex( pszIconPath, iIconIndex, 0);
}
/****************************************************************************
* SHGetIconOverlayIndexA [SHELL32.@]
*/
INT WINAPI SHGetIconOverlayIndexA( LPCSTR pszIconPath, int iIconIndex)
{
INT ret, len;
LPWSTR lpwstrFile = NULL;
TRACE("%s %d\n", pszIconPath, iIconIndex);
if( pszIconPath != NULL)
{
len = MultiByteToWideChar(CP_ACP, 0, pszIconPath, -1, NULL, 0);
lpwstrFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
MultiByteToWideChar(CP_ACP, 0, pszIconPath, -1, lpwstrFile, len);
}
ret = SHGetIconOverlayIndexW( lpwstrFile, iIconIndex);
if( lpwstrFile != NULL)
HeapFree(GetProcessHeap(), 0, lpwstrFile);
return ret;
}
--- snip dlls/shell32/iconcache.c ---
and
--- snip dlls/shell32/shell32.spec ---
@ stdcall SHGetIconOverlayIndexA(str long)
@ stdcall SHGetIconOverlayIndexW(wstr long)
--- snip dlls/shell32/shell32.spec ---
With that fixes applied, the application is happy now.
Though the user interface is japanese all over the place.
IJO NASHI :-)
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5294
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2007-17-05 07:54 -------
The first crash was actually due to missing stuff in msxml3 and that is still
not fixed, right?
So i suggest to leave this bug open for now.
>Another exe protector version working :-)
Great!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8197
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.37. |0.9.36.
------- Additional Comments From vitaliy(a)kievinfo.com 2007-17-05 07:50 -------
Please don't change original reported version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8413
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-17-05 07:45 -------
Closing invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8413
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2007-17-05 07:45 -------
Correct resolution.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8413
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From vitaliy(a)kievinfo.com 2007-17-05 07:44 -------
It's not fixed, it's invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8418
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |minor
Component|wine-programs |wine-user
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.