http://bugs.winehq.org/show_bug.cgi?id=8600
Summary: voipstunt don't work
Product: Wine
Version: 0.9.33.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dark144(a)alice.it
the launch of the applications voipstunt.exe produce only a error list.
Need import dll like gdiplus.dll and pdh.dll.
--
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=8533
vladimiroski(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #6609 is|0 |1
obsolete| |
------- Additional Comments From vladimiroski(a)gmail.com 2007-04-06 11:37 -------
Created an attachment (id=6610)
--> (http://bugs.winehq.org/attachment.cgi?id=6610&action=view)
WINEDEBUG="+winsock" wine XMR.exe //Log Wine 0.9.38
sorry, last attachment was wrong, thanks Jesse Allen.
--
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=8533
------- Additional Comments From vladimiroski(a)gmail.com 2007-04-06 11:34 -------
Sorry, same error.
But something has changed:
Before (0.9.37):
trace:winsock:WS_gethostbyname "" ret (nil)
After (0.9.38):
trace:winsock:WS_gethostbyname "auroserver1" ret (nil)
Maybe you may want to try the soft, you can download a copy of the program here:
http://www.xmr.bolhost.com/arc/+Pruebas/XMR.exe
It's safe, it's for send SMS in El Salvador (country of Central America).
btw, I have to say that I was wrong, there's a difference between using and not
using DCOM98. Without DCOM98 the program just does not work.
Thanks for the help and for making Wine better!
--
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=8533
------- Additional Comments From the3dfxdude(a)gmail.com 2007-04-06 11:24 -------
vladimir, I think you attached the wrong file.
--
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=8194
------- Additional Comments From stefandoesinger(a)gmx.at 2007-04-06 10:53 -------
I just tried the game with today's git and my (only partially sent) thread
safety patches. Can you retest this bug?
I see the Impossible/Strange struct size 0 messages. I'll write a test for
this to be able to get rid of the error message :-)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1517
------- Additional Comments From focht(a)gmx.net 2007-04-06 10:35 -------
Created an attachment (id=6607)
--> (http://bugs.winehq.org/attachment.cgi?id=6607&action=view)
Edit control auto scroll endless loop
Hello,
some random pick...
I downloaded the latest version (ARCHPR version 3.01 build 7), wine 0.9.38.
The application is protected by ASprotect 2.x but that isn't the showstopper
here.
After unwrapping the protected executable it seems to boil down to EDIT control
issue.
Attached is relevant WINEDEBUG=+seh,+tid,+relay,+win,+msg,+edit snippet
The application locks up while "auto scrolling" - after inserting text into
multiline edit control.
The target window/control is a plain EDIT control.
Offending application code basically goes like this:
--- snip pseudo code ---
LRESULT result = 0;
do
{
result = SendMessage(hwnd, EM_SCROLL, SB_PAGEDOWN, 0);
}
while (HIWORD(result) == TRUE);
--- snip pseudo code ---
--- snip dlls/user32/edit.c ---
static LRESULT EDIT_EM_Scroll(EDITSTATE *es, INT action)
{
...
return MAKELONG((INT16)dy, (BOOL16)TRUE);
}
--- snip dlls/user32/edit.c ---
Windows returns 0x0 on first call.
Wine returns 0x0001fffe which is: (low) dy = 0xFFFE (-2) and (high) TRUE = 0x1
Though the application "auto scroll" code snippet is somewhat buggy too...
A cleaner solution would be like this (notice dy taken into account):
--- snip pseudo code ---
LRESULT result = 0;
do
{
result = SendMessage(hwnd, EM_SCROLL, SB_PAGEDOWN, 0);
}
while ((HIWORD(result) == TRUE) && (LOWORD(result) > 0));
--- snip pseudo code ---
But the question remains why negative dy is returned (control resizing issue?
font?).
I hope I provided enough hints for someone to investigate this user32 issue
further.
If debugging is really needed, I can provide unwrapped executable upon request
to make life easier :-)
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=8599
svzj(a)centrum.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|ReBirth raises exception |ReBirth raises exception
------- Additional Comments From svzj(a)centrum.cz 2007-04-06 10:34 -------
Wine versions I tried: .17, .18, .29, .38 on Gentoo and .37 and .38 on Ubuntu.
The SEH trace is from the Gentoo machine with .38
There are two an entries in appdb for ReBirth, one rating it gold, the other
even platinum.
Wine is in WindowsXP mode, Win 9x mode crashes at startup.
I also tried different soundcard options in winecfg on both ALSA and OSS.
--
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.