http://bugs.winehq.org/show_bug.cgi?id=4788
------- Additional Comments From mike(a)codeweavers.com 2006-10-03 00:38 -------
Your patch looks OK, except you should leave JOYDEV alone, and add
/dev/input/js0 as JOYDEV_ALT, and stick to the four space indent and ANSI C
bracket style in the rest of the file.
IMO, you're working around a deficiency in your operating system, not fixing a
wine bug.
--
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=4788
------- Additional Comments From yangman(a)gmail.com 2006-09-03 23:57 -------
>> So, I'm fairly convinced that any symlink, if available, should
>> actually be /dev/input/js* -> ../js*
> That's the wrong way round though.
Ugh, you're right, that's bass ackwards. That's a typo, and should disregarded
entirely.
--
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=4788
------- Additional Comments From yangman(a)gmail.com 2006-09-03 23:51 -------
Created an attachment (id=2027)
--> (http://bugs.winehq.org/attachment.cgi?id=2027&action=view)
look for joystick in /dev/input, and fall back to /dev if not possible
Hm... thanks for clearing up the js* convention. I wasn't entirely sure if
older kernels used /dev/js*
How about having wine look in /dev/input by default, but fall back to /dev if
none are detected?
>From the looks of it, a good portion of the major distributions are not making
the compatability symlink, and it seems silly to have joystick support break
just because wine only supports an older convention.
--
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=4788
------- Additional Comments From mike(a)codeweavers.com 2006-09-03 23:29 -------
> So, I'm fairly convinced that any symlink, if available, should
> actually be /dev/input/js* -> ../js*
That's the wrong way round though. The old convention was that "/dev/js*"
existed. New system software maintains compatability with older systems by
creating a symlink from the old location to the new location. Old systems can't
be changed, and old software uses /dev/js*, so it should always be available.
A newer distribution maintains compatibility with older software by setting up
like follows:
bash-3.00$ ls -l /dev/input/js0 /dev/js0
crw-r--r-- 1 root root 13, 0 2001-01-08 08:58 /dev/input/js0
lrwxrwxrwx 1 root root 9 2005-11-23 06:15 /dev/js0 -> input/js0
/dev/js0 shouldn't ever disappear, because there'll always be some old software
round that uses it. /dev/input/js0 shouldn't be used by Wine because it may be
run on older systems that don't use udev, and don't have /dev/input/js0.
--
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=4788
------- Additional Comments From yangman(a)gmail.com 2006-09-03 23:08 -------
I grabbed the latest udev from kernel.org, and grepped the included config files
to see what they say:
$ grep '^KERNEL=="js' */*
debian/devfs.rules:KERNEL=="js[0-9]*", NAME="input/%k"
debian/permissions.rules:KERNEL=="js[0-9]*", MODE="0664"
debian/udev.rules:KERNEL=="js[0-9]*", NAME="input/%k"
gentoo/udev.rules:KERNEL=="js*", NAME="input/%k", MODE="664"
redhat/udev.rules:KERNEL=="js[0-9]*", MODE="0644"
redhat/udev.rules:KERNEL=="js*", NAME="input/%k",
SYMLINK+="%k"
suse/50-udev-default.rules:KERNEL=="js*", NAME="input/%k",
MODE="0644"
So, I'm fairly convinced that any symlink, if available, should actually be
/dev/input/js* -> ../js*
--
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=4788
------- Additional Comments From yangman(a)gmail.com 2006-09-03 22:59 -------
Yes, udev is running.
$ grep js /etc/udev/rules.d/50-udev.rules
KERNEL=="js*", NAME="input/%k", MODE="664"
Also, from kernel menuconfig (2.6.15-gentoo-r1):
CONFIG_INPUT_JOYDEV:
Say Y here if you want your joystick or gamepad to be
accessible as char device 13:0+ - /dev/input/jsX device.
So, it may be the case that some distributions are distributing non-standard
udev configurations, or wine is following an older convention.
--
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=4788
------- Additional Comments From mike(a)codeweavers.com 2006-09-03 22:47 -------
udevd should create a symlink as follows:
bash-3.00$ uname -a
Linux black 2.6.15 #5 PREEMPT Sat Feb 11 14:54:52 KST 2006 i686 unknown unknown
GNU/Linux
bash-3.00$ ls -l /dev/js0
lrwxrwxrwx 1 root root 9 2005-11-23 06:15 /dev/js0 -> input/js0
Is your udevd running?
--
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=4788
Summary: wine should look for joystick devices in /dev/input
Product: Wine
Version: 0.9.9.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yangman(a)gmail.com
I'm not absolutely clear on the specifics, but at least for kernel 2.6.*, joydev
module creates js* devices in /dev/input as opposed to /dev
Since wine still looks for /dev/js*, joystick support is broken.
--
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=3067
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |the3dfxdude(a)gmail.com
------- Additional Comments From the3dfxdude(a)gmail.com 2006-09-03 22:36 -------
Hi Raymond,
Could you give an update on the problem?
--
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=4755
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 22:33 -------
Confirmed here too (SuSE 10.0, nVidia 8178). Right after I close steam, it
either exits with that error or crashes right after closing window.
--
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=4787
------- Additional Comments From reif(a)earthlink.net 2006-09-03 21:25 -------
Actually the esd driver is not very stable. Just try running the wave and
dsound regression tests in interactive mode and see (and hear) what happens.
--
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=4786
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
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=4785
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
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=4783
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
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=4784
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
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=4782
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |minor
Summary|AN APPLICATION WHICH USES |com port communication slow
|THE COM1 PORT RUNS TOO SLOW |
------- Additional Comments From mike(a)codeweavers.com 2006-09-03 20:37 -------
How about testing it with Wine 0.9.9?
--
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=4787
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-directx-dsound
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 20:25 -------
That looks like dsound bug. It doesn't work well with anything but OSS Wine's
driver.
--
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=4786
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
Priority|P2 |P5
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 20:22 -------
Any screenshots of this? Any messages in the terminal?
--
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=4785
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P4
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 20:22 -------
What dll are they implemented in? Do they work at all? What do they return? Any
tests, sample code?
--
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=4784
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
Priority|P2 |P4
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 20:20 -------
What fonts does it use? Any screenshots?
--
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=4786
Summary: Network Notepad - Toolbar Icons not displayed correctly
Product: Wine
Version: 0.9.9.
Platform: PC
URL: http://www.networknotepad.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jag(a)t4000.freeserve.co.uk
VB6 toolbar control used. All the icons except one on the tool bar are not
displayed correctly. Looks like a quarter of the icon is displayed on each
button.
--
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=4785
Summary: Network Notepad - Lightning link style and arrow heads
not drawn correctly or causes error.
Product: Wine
Version: 0.9.9.
Platform: PC
URL: http://www.networknotepad.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jag(a)t4000.freeserve.co.uk
VB6 sin() and cos() functions used. I suspect these functions don't work under
Wine.
--
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=4784
Summary: Network Notepad - Text Font size is not variable
Product: Wine
Version: 0.9.9.
Platform: PC
URL: http://www.networknotepad.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jag(a)t4000.freeserve.co.uk
VB6 Labels used to display text. Running under wine it stores the selected font
size ok, but always displays the same fixed size fonts.
--
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=4783
Summary: Network Notepad - .wmf files not rendered
Product: Wine
Version: 0.9.9.
Platform: PC
URL: http://www.networknotepad.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jag(a)t4000.freeserve.co.uk
VB6 image controls and picture boxes are used to display .wmf windows metafiles.
--
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=4755
------- Additional Comments From jave27(a)gmail.com 2006-09-03 17:15 -------
I can confirm this issue using the nVidia binary driver 8178 and kernel 2.6.15.5
vanilla.
However, on Fedora Core 5 Test 3 (patched kernel 2.6.15.1) with VMWare X driver
and mesa GL libs, the error is not reproducable.
--
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=4724
------- Additional Comments From bdehnhardt(a)gbis.com 2006-09-03 16:58 -------
Applied patch to 0.9.9 distribution files, recompiled and installed. DeltaCad
worked like a charm. Unless someone else has something they want to look at, I'd
say it's fixed. Do I set the resolution, or does someone else need to check it out?
--
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=2812
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-09-03 16:35 -------
sorry, i misread the bug. I read msvfw32 instead of msvideo. Sorry about the noise
--
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=1410
------- Additional Comments From myrd(a)projectmagma.net 2006-09-03 16:33 -------
Then the solution would be to NOT center it when Acquire gets set, but rather set a boolean
"should_be_centered" to TRUE. Then, in any function that expects the mouse to be centered to generate
relative mouse events, it should re-center it at the start, do its thing, then de-center it back at the end of
the function, if "should_be_centered" is set.
--
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=2812
------- Additional Comments From dobey(a)novell.com 2006-09-03 16:30 -------
I've not tried msvfw32.dll. I tried msvideo.dll. The Journeyman Project Turbo!
is a 16-bit Win3.1 application. I don't know if the msvfw32.dll would help at
all. The CD includes an installation for MS Video for Windows 1.1, iirc, which I
ran and installed, however it did not seem to help. Now, when I try to run that
installer again, it complains about "Tried to create an invalid path using
'c:\windows\system\' and 'ACMCMPRS.DLL'. I am not sure that the install worked
the first time, either, as there's no mplayer.exe in 'c:\windows\' for example.
I'll check on the msvfw32.dll in a bit.
--
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=4779
ivg2(a)cornell.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From ivg2(a)cornell.edu 2006-09-03 16:29 -------
That's odd, I can't reproduce the bug today (on a clean install, Wine 0.9.9, no
native dcom). The only thing different yesterday was that the system was using
more memory, more CPU, and more resources in general [ beagle was out of control
again ].
Closing bug, will reopen if I see it again.
--
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=2812
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-09-03 16:13 -------
What does it do with native msvfw32 then? If it also complains about the function
being not implemented you should take an msvfw32 from win2k/XP installation, or
,if you have a valid window license, get it from
http://www.dlldump.com/cgi-bin/testwrap/downloadcounts.cgi?rt=count&path=dl…
The function is not present in win98's msvfw32.dll.
This is of course not a fix for this bug, but you might be able to use it as a
workaround for now.
--
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=4782
cmol1(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P1
--
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=4780
cmol1(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=4782
Summary: AN APPLICATION WHICH USES THE COM1 PORT RUNS TOO SLOW
Product: Wine
Version: 0.9.2.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cmol1(a)hotmail.com
I'm running an application which basically comunicates to a server using TCP/IP
and receive data from serial port COM1. The Application runs but too slow,
really slow and I don't know what to do to improve performance, any tips? or
suggestions please. I'm using FEDORA CORE 5, I'm gonna try another linux
distribution (REDHAT ENTREPRISE 4) to see if there is any difference. Please
give me a hand with this, I will really apreciate it.
--
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=4781
Summary: MSN Silently cannot connect to network
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kyle(a)transparen.com
When trying to use MSN 7.5 (install using win2000 version from mess.be) you can
get the program to run very well it seems with:
WINEDLLOVERRIDES="crypt32,wintrust,rasapi32,riched20=n" wine msnmsgr.exe
But MSN reports "Signing into MSN Messenger failed because the service is
temporarily unavailable. Please try again later. 80090009"
The MSN internet tests "Tools->Options->Connections->Advanced Settings->Test"
report that the internet connection is working properly.
(maybe MSN is testing for something and just giving up because it doesn't think
it can do it).
I have also tryed using a Socks4 proxy to see if it tries to connect differently
and it still doesn't choose to work.
Below is the console output from start to finish.
My reason for wanting MSN 7.5 as a user is because gaim (as well as older
versions of MSN) have not yet fully developed Winks, saving custom emoticons,
and AV chat.
Kyle
**** start running ****
fixme:shell:MLLoadLibraryA ("MSGSLANG.DLL",0x400000,0x00000000) semi-stub!
fixme:advapi:ParseStringSidToSid String constant not supported: L"SY"
fixme:advapi:ParseStringSidToSid String constant not supported: L"BA"
fixme:advapi:ParseStringSidToSid String constant not supported: L"CO"
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 8 0x7fbcfbe8
0x7fbcfbe4
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 16 0x7fbcfbec
0x7fbcfbe8
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 8 0x7fbcfb90
0x7fbcfb8c
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 16 0x7fbcfb94
0x7fbcfb90
fixme:wtsapi:WTSWaitSystemEvent Stub (nil) 0x00000018 0x7e41aac4
err:ole:create_server class {1be1f766-5536-11d1-b726-00c04fb926af} not registered
err:ole:CoGetClassObject no class object {1be1f766-5536-11d1-b726-00c04fb926af}
could be created for for context 0x4
fixme:advapi:RegisterEventSourceW ((null),L"EventSystem"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0032,0xc0001201,(nil),0x0003,0x00000000,0x7fbcfa34,(nil)): stub
err:eventlog:ReportEventW
L"d:\\qxp_slp\\com\\com1x\\src\\events\\tier1\\eventsystemobj.cpp"
err:eventlog:ReportEventW L"44"
err:eventlog:ReportEventW L"80040152"
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
fixme:ole:CoCreateInstance no instance created for interface
{4e14fb9f-2e22-11d1-9964-00c04fbbb345} of class
{4e14fba2-2e22-11d1-9964-00c04fbbb345}, hres is 0x80040206
fixme:process:SetProcessWorkingSetSize (0xffffffff,-1,-1): stub - harmless
fixme:imm:ImmReleaseContext (0x10046, 0x7fd28ae8): stub
err:ole:CoGetClassObject class {4955dd33-b159-11d0-8fcf-00aa006bcc59} not registered
err:ole:CoGetClassObject no class object {4955dd33-b159-11d0-8fcf-00aa006bcc59}
could be created for for context 0x401
fixme:ole:CoCreateInstance no classfactory created for CLSID
{4955dd33-b159-11d0-8fcf-00aa006bcc59}, hres is 0x80040154
fixme:imm:ImmReleaseContext (0x10046, 0x7fd28ae8): stub
fixme:imm:ImmSetConversionStatus ((nil), 0, 0): stub
**** attempt to login happened here ****
fixme:imm:ImmSetConversionStatus ((nil), 1, 0): stub
**** me quiting ****
fixme:menu:TrackPopupMenuEx not fully implemented
fixme:process:SetProcessWorkingSetSize (0xffffffff,-1,-1): stub - harmless
fixme:ole:CoSuspendClassObjects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:shell:SHAppBarMessage ABM_REMOVE broken
fixme:wtsapi:WTSWaitSystemEvent Stub (nil) 0x80000000 0x7fbcfd60
fixme:wtsapi:WTSWaitSystemEvent Stub (nil) 0x00000018 0x7cf6eac4
**** closed successfully ****
--
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=2812
dobey(a)novell.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dobey(a)novell.com
--
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=3712
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 13:26 -------
Confirmed. Games still crash, but that's a different issue.
--
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=3945
------- Additional Comments From super-greg(a)gmx.de 2006-09-03 13:17 -------
same for me here, only blocks everywhere, and no vids
--
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=2812
------- Additional Comments From dobey(a)novell.com 2006-09-03 13:17 -------
I can confirm that this issue still exists in wine 0.9.5 with the "The
Journeyman Project Turbo!" video game. I can't even seem to get by the issue by
setting a DllOverride for the game. If someone can make this game work under
wine, I can ship them a copy of the game.
--
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=1917
jave27(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jave27(a)gmail.com
--
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=1917
------- Additional Comments From jave27(a)gmail.com 2006-09-03 13:12 -------
Just tried with 2006-03-09 CVS and can confirm the issue still exists, but I
don't know that it's truly an issue. It's just how fast the screen redraws take
place and in what order. It's not just this app, every app in wine exhibits the
same behaviour for me. I've seen Windows do similar things when the system is
really busy. Here's how to reproduce (without the attachments):
Open any windowed app under wine.
Now open another one and make it smaller so that you can see both apps.
Drag the smaller app around, and you'll briefly see a trail of a "shadow" of the
smaller app.
It appears that wine doesn't redraw the non-activated app until either the
smaller window has either finished moving or at a certain timeout value. I'm
not sure how the windowing code works exactly, but it seems to mimick original
Windows fairly well, just that it doesn't redraw the non-active app quite as
fast. Resizing a window in Wine has similar redraw issues.
--
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=3945
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-09-03 13:07 -------
I wonder, can you read any of the text? I only have blocks, and dunno how to
proceed.
--
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=4427
------- Additional Comments From super-greg(a)gmx.de 2006-09-03 13:06 -------
I tried with dxlevel 90 today and current cvs and for me the crash went away.
But ingame everything looks very ugly.
so vertex shader enabled|disabled is still the best.
--
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=4780
Summary: ERROR COM1 "fixme:comm:GetCommProperties (0x100
0x7fc9f454 )"
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cmol1(a)hotmail.com
I got wine 0.9.9 installed on Fedora Core 5 (updated), and I'm trying to run an
application that access serial port com1, when I open the program, the console
give me this error:
err:listview:LISTVIEW_WindowProc unknown msg 2210 wp=00000001 lp=000100bc
fixme:comm:SetupComm insize 18 outsize 0 unimplemented stub
fixme:comm:GetCommProperties (0x100 0x7fc9f454 )
fixme:comm:GetCommProperties (0x100 0x7fc9f454 )
fixme:comm:GetCommProperties (0x100 0x7fc9f454 )
fixme:comm:GetCommProperties (0x100 0x7fc9f454 )
fixme:comm:GetCommProperties (0x100 0x7fc9f454 )
, these message keep comming until I kill the application. I also installed TERA
TERM PRO to try the serial port and it works perfectly, so I don't know what is
wrong here. If some1 can give me a hand here, it will be 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=3945
------- Additional Comments From super-greg(a)gmx.de 2006-09-03 12:57 -------
With todays cvs and disabled pixel and vertex shaders I managed to get into
menu. looks all abit ugly. ;)
with activated pixelshaders the game crashs on start.
--
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=4176
agbr(a)hotbox.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|acad 2000 : "Fatal Error: |acad 2000i : "Fatal Error:
|Unhandled Access Violation |Unhandled Access Violation
|at 0x0" |at 0x0"
--
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=2738
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 08:50 -------
Try adding this key to the registry and make +relay,+seh,+tid trace. Also try
using keyboard only instead of mouse - that might save you few MBs. Then use
bzip on the log file.
(note: 2 lines split for beter readability)
[HKCU\Software\Wine\Debug]
"RelayExclude"="RtlEnterCriticalSection;RtlLeaveCriticalSection;
_EnterSysLevel;_LeaveSysLevel;_CheckNotSysLevel;NtCurrentTeb;
LdrAccessResource;RtlUpperChar;kernel32.94;kernel32.97;kernel32.98;TlsGetValue"
--
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=1410
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-03 08:21 -------
It needs to be recentered to generate relative mouse events. It's just the way
it's implemented.
And no, there is no workaround that will work for all apps. And just moving
problem around doesn't fix anything.
Some one just needs to sit down and figure it all out, rewritting the way track
mouse.
--
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=4779
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.ageofempires3.com
| |/
Keywords| |download
--
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=4707
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-09-03 07:52 -------
Resolving FIXED..
--
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=2738
------- Additional Comments From bo(a)tveden.com 2006-09-03 07:02 -------
I am using Notes version 5.0.7, together with WINE 0.9.9
Wine/LotusNotes crashes when:
- I attempt to open a document with a ".doc" attachment
or
- I attempt to add a ".doc" attachment (created with Microsoft Word 97, running
under Win2K)
(I have some emails with ".pdf" attachment, and they do not cause problems)
I have a 500MB "+relay" trace file, from a case where I attempt to open an email
with ".doc" attachment. Do you want that one? (!)
--
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=4099
Jean-Damien.Durand(a)cern.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From Jean-Damien.Durand(a)cern.ch 2006-09-03 03:28 -------
Thank you very much, I confirm the installation worked. Using your overrides
settings I got it apparently working as well (just a quick check though).
If you don't mind I close the bug - thanks again!
JD.
--
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=4779
Summary: Age of Empires 3 Demo fails to install: Unable to create
InstallDriver instance
Product: Wine
Version: 0.9.9.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
The install fails with the following message box:
1608: Unable to create InstallDriver instance,
Return Code: -2147221021
The output is:
fixme:win:SetWindowTextA setting text ": Setup.INI" of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text ": 0x0409.ini" of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text ": setup.isn" of other process window
(nil) should not use SendMessage
fixme:msi:MsiGetProductInfoW L"{C83F2952-4678-4F00-AB05-776658A8D0AE}"
L"PackageCode" 0x7fd32068 0x7f9bcfbc
fixme:win:SetWindowTextA setting text "Extracting: " of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text "Extracting: " of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text "Extracting: Setup.bmp" of other process
window (nil) should not use SendMessage
fixme:msi:MsiInstallProductW L"C:\\windows\\temp\\_isb5b0\\ISScript11.Msi"
L"REBOOT=ReallySuppress ADDLOCAL=ISScript"
fixme:msi:ITERATE_DuplicateFiles We should track these duplicate files as well
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveRegistryValues"
fixme:msi:deformat_component component key L"IDriverT.exe"
fixme:msi:deformat_component component key L"IDriverT.exe"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"RemoveFolders"
fixme:msi:msi_unimplemented_action_stub InstallServices -> 1 ignored
L"ServiceInstall" table values
err:ole:CoGetClassObject no class object {4f5e3a76-f453-4882-ab42-7224f3310de7}
could be created for for context 0x4
fixme:ole:CoCreateInstance no classfactory created for CLSID
{4f5e3a76-f453-4882-ab42-7224f3310de7}, hres is 0x80004002
--
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=4745
------- Additional Comments From ivg2(a)cornell.edu 2006-09-03 02:08 -------
Running with oss does not help.
I also got an error that said I should use Emulation instead of Full for audio
acceleration... did that, but the bug remains.
=====================
Attached is a trace with oss, emulation, pixel shaders on.
+d3d, +d3d9, +seh. I don't like the texture errors I see right before the crash.
=====================
Note the
wine client error:ffffffff: write: Bad file descriptor
at the end - sometimes I get many of those...
--
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=4778
------- Additional Comments From ivg2(a)cornell.edu 2006-09-03 01:46 -------
I should note that Desktop mode has completely different behavior in the
following ways:
- at the beginning I only see background window and message box, and I am able
to see the background window's background [ but maybe the wizard window is just
covered up? ]. Anyway, the message box is correctly on top.
- the same redraw problems are visible as in Managed mode
- once the wizard window becomes visible, any new message boxes will be modal,
and not allow moving the wizard window around, unlike Managed mode.
--
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=4778
Summary: Message box prevents redraw/focus of background window
Product: Wine
Version: 0.9.9.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivg2(a)cornell.edu
This is a clean install of Wine 0.9.9.
Upon launching BattleField Demo 2 installer, the following things show up:
- large background window
- medium wizard window
- message box telling me that "This game has been tested only on WinXP"
However, the large and medium windows will not refresh/redraw at all - the
message box has focus. Moving the message box around leaves draws garbage over
the other two windows.
Worse, however, the message box is not on top of all other windows!
The wizard/medium window is on top, and will stay on top when other windows are
clicked or workspace is changed - it will remain inactive and unable to get
focus until the message box is clicked. Meanwhile, the box is partially covered
by this wizard window. In the GTA installer I've seen a box that is completely
hidden behind such a window, and the user has no way of clicking it.
When I finally manage to click OK, the Wizard box gains focus, and the install
proceeds. If I move around the wizard window, the background window now won't
redraw, and garbage shows up on the screen. If I do something to trigger another
message box (like click Cancel), the box behaves properly and will no longer
prevent redraw/refocus of the wizard window.
Error output includes:
[ the errors at the end are already in bugzilla as a separate bug against
wine-ole component, since they prevent the instll - this bug isn't about those
errors ].
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7d4fe624,0x7d4fe628), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7d4fe620,0x7d4fe624), stub!
fixme:win:SetWindowTextA setting text "TITLE_CAPTIONBAR" of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text "Battlefield 2(TM) Demo - InstallShield
Wizard" of other process window (nil) should not use SendMessage
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd3d4,0x7fabd3d8), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd294,0x7fabd298), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd358,0x7fabd35c), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd8c0,0x7fabd8c4), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd780,0x7fabd784), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd844,0x7fabd848), stub!
fixme:win:SetWindowTextA setting text "TITLE_CAPTIONBAR" of other process window
(nil) should not use SendMessage
fixme:win:SetWindowTextA setting text "Battlefield 2(TM) Demo - InstallShield
Wizard" of other process window (nil) should not use SendMessage
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd5a4,0x7fabd5a8), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd464,0x7fabd468), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fabd528,0x7fabd52c), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab12d8,0x7fab12dc), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab1198,0x7fab119c), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab125c,0x7fab1260), stub!
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x20022
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab12d8,0x7fab12dc), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab1198,0x7fab119c), stub!
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7fab125c,0x7fab1260), stub!
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x20022
fixme:ole:RpcChannelBuffer_GetDestCtx (0x7d4fe630,0x7d4fe634), stub!
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0d00-00000a000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0d00-00000a000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0d00-00000a000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
--
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=4353
ivg2(a)cornell.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ivg2(a)cornell.edu
------- Additional Comments From ivg2(a)cornell.edu 2006-09-03 01:23 -------
Confirming bug on clean install of Wine 0.9.9.
--
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=4707
------- Additional Comments From cnbiz850(a)sohu.com 2006-09-03 01:18 -------
It works as of today for some reason. This bug can be closed.
--
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=1410
------- Additional Comments From myrd(a)projectmagma.net 2006-08-03 23:44 -------
Okay, cross-posting what I posted for Bug #4777:
The source code I'm talking about is in:
http://source.winehq.org/source/dlls/dinput/mouse.c
So...
The bug occurs when Acquire is called, but Unacquire is never called (until the app is about to close).
Furthermore, Acquire gets called multiple times, so the mouse keeps getting recentered, without
unacquire getting a chance to put the cursor back where it was.
While one can argue that this is bad practice from the application programmer's point of view, I think
that's irrelevant - and what's relevant is how Windows behaves: it doesn't center the cursor in such a
case!
So the question is, why does the cursor need to be centered in the first place, and can it be avoided
with a work around?
--
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=4777
------- Additional Comments From myrd(a)projectmagma.net 2006-08-03 23:32 -------
Actually, the problem is the exact opposite of my previous post, I believe.
The bug occurs when Acquire is called, but Unacquire is never called (until the app is about to close).
Furthermore, Acquire gets called multiple times, so the mouse keeps getting recentered, without
unacquire getting a chance to put the cursor back where it was.
While one can argue that this is bad practice from the application programmer's point of view, I think
that's irrelevant - and what's relevant is how Windows behaves: it doesn't center the cursor in such a case!
So the question is, why does the cursor need to be centered in the first place, and can it be avoided with a
work around?
--
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=4777
------- Additional Comments From myrd(a)projectmagma.net 2006-08-03 23:24 -------
Also, I think WINE assumes that the app will only call Acquire once when it starts, so its okay to center the
mouse then. However, its perfectly okay (though perhaps not very efficient) to call Acquire whenever you
want to get information from the mouse device (such as its current coordinates - oops!).
--
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=4777
------- Additional Comments From myrd(a)projectmagma.net 2006-08-03 23:19 -------
Actually, ignore my "easy fix" post. I just tested under Windows, and the Mouse is indeed set to relative
(not absolute) under Windows. It's just that Windows doesn't center it on the screen like WINE does.
--
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=4745
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-03 21:52 -------
Please try with OSS instead of ALSA. I've seen lots of "strange" crashes caused
by some memory corruptions in our ALSA driver.
--
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=4777
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-03 21:35 -------
Just to let you know, I tested your proposed changes - they do not work. They
fix one type of games and brake the other type...
--
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=4777
------- Additional Comments From myrd(a)projectmagma.net 2006-08-03 20:13 -------
An "easy" fix would be to do this:
In function alloc_device(), add:
newDevice->absolute = 1;
In function SysMouseAImpl_SetDataFormat() remove:
This->absolute = 0;
However, I'd imagine this would require testing to make sure it doesn't break existing stuff. This
change does seem to be in accordance to how Windows works, but a comment in the Wine code seems
to contradict this:
402 /* Tests under windows show that a call to SetDataFormat always sets the mouse
403 in relative mode whatever the dwFlags value (DIDF_ABSAXIS/DIDF_RELAXIS).
404 To switch in absolute mode, SetProperty must be used. */
Obviously, this is NOT the case for Myth II, because Myth II does call SetDataFormat, and Windows
doesn't keep re-centering the mouse there.
--
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=4775
------- Additional Comments From mike(a)codeweavers.com 2006-08-03 19:45 -------
I think that either
* You were running as root unintentionally
OR
* Mandriva has a serious sercurity problem in their Linux kernel
Wine runs with no special privilege, and it should be impossible for it to
create files with uid != getuid().
Therefore, I think this bug is either invalid, or not our bug. Please try
reproducing the problem...
--
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=4646
------- Additional Comments From mike(a)codeweavers.com 2006-08-03 19:39 -------
Sorry, I didn't read Tony's request properly. Anyway, if you didn't run the
Visual C IDE in Wine, then don't add an appdb entry or a bug for it. Thanks for
reporting the initial problem.
--
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=4773
------- Additional Comments From mike(a)codeweavers.com 2006-08-03 19:22 -------
Which locale are you using? Looks like it's trying to display another language
and failing? What happens if you put back the chs.lng, then run it with
LANG=zh_TW.Big5 wine "M3 Game Manager.exe"
If you don't have Chinese fonts, it should give you square boxes, but you can
consider that correct. Then try with LANG=en_US, and see if that works.
--
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=4777
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 19:03 -------
This is a duplicate of 1410
Do you have a Patch in mind?
*** This bug has been marked as a duplicate of 1410 ***
--
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=1410
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |myrd(a)projectmagma.net
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 19:03 -------
*** Bug 4777 has been marked as a duplicate of this bug. ***
--
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=4777
myrd(a)projectmagma.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |0.9.9.
--
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=4777
Summary: Mouse Absolute vs. Relative Incorrect Behaviour (doesn't
match Windows)
Product: Wine
Version: unspecified
Platform: PC
URL: http://getmyth.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myrd(a)projectmagma.net
The bug is in the file: http://source.winehq.org/source/dlls/dinput/mouse.c
The problem is when a new Mouse Device is created, the boolean "absolute" is FALSE in WINE (in the
code). When absolute is FALSE, whenever Acquire is called, WINE will center the mouse.
The only way for WINE to set "absolute" to true, and therefore prevent the unwanted centering, is if a
specific call to SetProperty is made.
Windows does not require this. That is, Windows will not center the mouse every time Acquire is called
(like WINE does) if no call to SetProperty has been made.
A test application is available to demonstrate this bug. Simply go to http://getmyth.com/ and download
the Myth II demo. Run it under WINE and under Windows (all versions, from 95 to XP behave the same),
and observe how WINE centers the cursor (and makes it unuseable), while Windows does not.
Wine's behavior needs to be made to match Windows, and that is - not to center the mouse by default.
--
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=4776
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 16:50 -------
Could you please add an entry for this program in the AppDB http://appdb.winehq.org
--
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=4770
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://www.blackberry.net |https://www.blackberry.com/D
| |ownloads/entry.do?code=A8BAA
| |56554F96369AB93E4F3BB068C22
Keywords| |download
--
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=4740
------- Additional Comments From m.w.palmer(a)iee.org 2006-08-03 16:33 -------
I have just built from source 0.9.9 and installed it on my system. The error
message is now a different one.
Error dialog box titled "Unhandled Exception", Error Numvwe 0x80040706,
Description: Object reference not set. Setup will now terminate.
Output from gives this.
fixme:ole:CreateProxyFromTypeInfo 0x7ff49054 0x7ffc1198
{3d8b6331-d8b1-11d2-80c5-00104b1f6cea} 0x7ffc129c 0x7ffc1298
err:ole:CoUnmarshalInterface IMarshal::UnmarshalInterface failed, 0x80004001
fixme:ole:CreateProxyFromTypeInfo 0x7ff49104 0x7e7d6358
{3d8b6331-d8b1-11d2-80c5-00104b1f6cea} 0x7e7d645c 0x7e7d6458
err:ole:CoUnmarshalInterface IMarshal::UnmarshalInterface failed, 0x80004001
One thing I need to point out is the installers may not be the same between the
full version and the demo as the full version comes on 4 CDs.
I'll attempt to now install the demo to see if I get any errors.
--
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=4768
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|NoAppDBEntry |
--
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=4765
------- Additional Comments From lcid-fire(a)gmx.net 2006-08-03 14:50 -------
Both are abondonware games - so no change for a demo there.
--
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=4775
joebaker(a)dcresearch.com changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC
------- Additional Comments From joebaker(a)dcresearch.com 2006-08-03 14:43 -------
Thanks for the feedback. However, it is interesting to not that I was not
running wine as root. I had specifically sshed into the box as user "mso2k".
So I found it bugworthy to report that this file was created with ownership to
root, group membership to mso2k and that the install reported that access to the
file was denied.
I'll try running the install without winetools.
I've updated the OS to Linux
Actually it is running on Mandriva 2006. A Pentium 4 2.4 ghz machine (without
hyperthreading)
We have a 3ware 9500 series raid controller.
-Joe Baker
--
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=4775
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-03 13:59 -------
Any reasons why are you using winetools?
You sure you never ran Wine as root?
Please update your Hardware and OS ^
--
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=4709
------- Additional Comments From hans(a)it.vu.nl 2006-08-03 13:37 -------
Yes, there's a finite number of them ;-) Only 23 of the Lsa calls
are documented on MSDN, and until now this app wants documented calls...
I'll create a batch of stubs for these but it will not be until next
weekend. Feel free to beat me to it.
--
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=4776
Summary: Visual Basic error when starting ESRI's ArcExplorer
Product: Wine
Version: 0.9.9.
Platform: Other
URL: http://www.esri.com/software/arcexplorer/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kimmo.sundqvist(a)mbnet.fi
The program terminates on startup with dialog saying:
Run-time error '458':
Variable uses an Automation type not supported in Visual Basic
On the terminal I see:
[Awful lot of hexadecimals here. Will post them upon request]
err:ole:CoGetClassObject class {00000010-0000-0010-8000-00aa006d2ea4} not regist
ered
err:ole:CoGetClassObject no class object {00000010-0000-0010-8000-00aa006d2ea4}
could be created for for context 0x1
err:ole:CoGetClassObject class {00000010-0000-0010-8000-00aa006d2ea4} not regist
ered
err:ole:CoGetClassObject no class object {00000010-0000-0010-8000-00aa006d2ea4}
could be created for for context 0x1
err:ole:typedescvt_to_variantvt cannot convert type 26 into variant VT
I know there exists a Java version for linux, but I'd rather trust wine than
let the Java version install its custom JRE/JDK when I already have a JDK.
--
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=4772
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-08-03 12:56 -------
| do you know a good way to find out what fonts this wants?
Yes. Now you should remove half of the copied fonts and see if the situation
got worse. If not, copy them back and remove half of the mentioned half. If
yes, then copy them back and remove another half. And so on. You end your
trial, when situation get worse by removing a single font file. This would be
an answer.
This is something like a bisection method in math for finding a root of a given
equation. :))
And of course it doesn't work properly if we have more than one root. (more than
one offending font)
--
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.