http://bugs.winehq.com/show_bug.cgi?id=1868
Summary: ftol function from msvcrt emulation incorporates GNU-C
specific artefact
Product: Wine
Version: 20030813
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cbah(a)chez.com
There is an feature in way how GNU-C generated code handles double to int
conversion, i.e. the following code:
-----
#include <stdio.h>
int main() {double t[]= {
2777777777.0,
1777777777.0,
};int i;
for(i=0;i<sizeof(t)/sizeof(*t);i++) {
printf("%lf -> %#x\n", t[i], (long)t[i]);
}
return 1;
}
---
When compiled with GCC prints out
2777777777.000000 -> 0x80000000
1777777777.000000 -> 0x69f6bc71
And when compiled with MSVC++ (use /MD and save as ftol.exe for the next test),
prints out something better.
2777777777.000000 -> 0xa5918671
1777777777.000000 -> 0x69f6bc71
Unsuprisingly if ftol.exe launched under wine, it prints out 0x80000000 as
result of first conversion. Using original msvcrt.dll with wine solves the
problem. However problem could be solved in msvcr emulation layer by applying
the following ha^H^Hpatch:
--- ./work/wine-20030813/dlls/ntdll/misc.c.orig Sun Dec 7 21:57:45 2003
+++ ./work/wine-20030813/dlls/ntdll/misc.c Mon Dec 8 00:14:04 2003
@@ -59,8 +59,10 @@
/* don't just do DO_FPU("fistp",retval), because the rounding
* mode must also be set to "round towards zero"... */
double fl;
+ long long r;
POP_FPU(fl);
- return (LONG)fl;
+ r = (long long)fl;
+ return (long)r;
}
#endif /* defined(__GNUC__) && defined(__i386__) */
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1867
Summary: direct sound (wineoss) records when plays, generating
dma overruns
Product: Wine
Version: 20030318
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Jskud(a)Jskud.com
>From Jskud Sun Dec 7 14:33:12 -0800 2003
From: Jskud(a)Jskud.com
To: discuss(a)crossover.codeweavers.com
Subject: mystery solved: why bad/no sound with QuickTimePlayer on CX-plugin 2.0.2
Reply-to: Jskud(a)Jskud.com
Problem
crappy sound with (latest) standard i810_audio driver
no sound with (latest) ALSA intel8x0 driver
Cause
i810_audio driver enables record and playback triggers on open;
wineoss respects the current triggers; Intel ICH3 (the /dev/dsp
controller) will read data on playback. Since the client is not
draining the input buffer, there is an overrun, and disruptive
error handling, with poor real time audio behavior, ensues.
intel8x0: traced it as far as mmap failure (EIO) in wineoss.
Possible Solutions
Patch the i810_audio driver to disable PCM_ENABLE_INPUT on open
#if 0
dmabuf->trigger |= PCM_ENABLE_INPUT;
#endif
Hack wineoss to disable the triggers on (device) open, since it
carefully preserves them thereafter.
Use better hardware (Intel ICH5 does not exhibit this behavior)
Verification
Patched the i810_audio driver, and QuickTimePlayer works great.
Details
I recently purchased and installed Crossover Plugin 2.0.2, and
installed the WinDoze QuickTime plugin (6.3, per the FAQ --
thanks). All this on my Dell Inspiron 4150, using a chipset
with the Intel ICH3, running RedHat 8.0, with the latest kernel,
2.4.20-24.8, installed.
There were no problems playing sound with xmms. However, I had
poor sound via QuickTimePlayer with the native i810_audio
driver, so I installed the latest version of ALSA (1.0.0rc1),
and configured the intel8x0 driver. Worse, now I had no sound
with QuickTimePlayer.
I enabled debug channels, and discovered that some mmap call in
wineoss was failing with EIO when using ALSA. But I also
noticed I had "dma overrun" messages using the simpler
(non-ALSA) default i810_audio, and decided to investigate that.
The Cause and Solution above report my findings.
/Jskud
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1866
Summary: Unimplemented function (Worms3D/Installshield)
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tais.hansen(a)osd.dk
Wine dies on "unimplemented function uxtheme.dll.GetThemeAppProperties" when
attempting to install Worms 3D:
$ wine --version
Wine 20031118
$ wine setup.exe
fixme:seh:check_resource_write Broken app is writing to the resource data,
enabling work-around
fixme:seh:EXC_RtlRaiseException call to unimplemented function uxtheme.dll.
GetThemeAppProperties
wine: Unhandled exception (thread 000b), starting debugger...
WineDbg starting on pid a
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'D:\setup.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x401b0000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40480000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x406d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x406c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x408f0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40870000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40710000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40930000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL' (0x40a10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\CRYPT32.DLL' (0x41a50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x41570000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x416d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x41640000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\SETUP.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\IGDI.DLL' (0x41940000)
No debug information in 32bit DLL 'E:\ISP03A9.TMP\_SETUP.DLL' (0x4196f000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\UXTHEME.DLL' (0x419d0000)
Unhandled exception: unimplemented function uxtheme.dll.GetThemeAppProperties
called in 32-bit code (0x419dc051).
In 32-bit mode.
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:1007 GS:005f
EIP:419dc051 ESP:406ace10 EBP:406ace64 EFLAGS:00000206( - 00 I - -P1 )
EAX:406ace10 EBX:419de90c ECX:419dc670 EDX:4020bbc4
ESI:41c704d0 EDI:00000001
Stack dump:
0x406ace10 (KERNEL32.DLL.VerSetConditionMask+0x13a8fe): 80000100 00000001
00000000 4194480c
0x406ace20 (KERNEL32.DLL.VerSetConditionMask+0x13a90e): 00000002 419dcd40
419dcddd 419dc156
0x406ace30 (KERNEL32.DLL.VerSetConditionMask+0x13a91e): 00000000 00000208
419de16c 405875a8
0x406ace40 (KERNEL32.DLL.VerSetConditionMask+0x13a92e): 406ace6c 404ddf13
419d0000 406ace58
0x406ace50 (KERNEL32.DLL.VerSetConditionMask+0x13a93e): 00000000 406ace60
00160015 41965138
0x406ace60 (KERNEL32.DLL.VerSetConditionMask+0x13a94e): 419de90c 406ace74
419dc176 419dcddd
0x406ace70 (KERNEL32.DLL.VerSetConditionMask+0x13a95e):
0200: sel=1007 base=40016000 limit=00001f83 32-bit rw-
Backtrace:
=>0 0x419dc051 (UXTHEME.DLL..text+0xb051 in UXTHEME.DLL) (ebp=406ace64)
1 0x419dc176 (UXTHEME.DLL.GetThemeBackgroundContentRect in UXTHEME.DLL)
(ebp=406ace74)
2 0x4194480c (IGDI.DLL.LoadSkinArchive+0xa12 in IGDI.DLL) (ebp=406adf50)
3 0x100071cd (SETUP.DLL..text+0x61cd in SETUP.DLL) (ebp=406adff8)
4 0x100132a0 (SETUP.DLL.UseXPTheme+0x8651 in SETUP.DLL) (ebp=406ae0c8)
5 0x1000b8ae (SETUP.DLL.UseXPTheme+0xc5f in SETUP.DLL) (ebp=406ae138)
6 0x1000ae10 (SETUP.DLL.UseXPTheme+0x1c1 in SETUP.DLL) (ebp=406ae1e0)
7 0x100095ff (SETUP.DLL.Start+0x74 in SETUP.DLL) (ebp=406ae96c)
8 0x004085ab (setup.exe..text+0x75ab in setup.exe) (ebp=406af344)
9 0x004073de (setup.exe..text+0x63de in setup.exe) (ebp=406afeb0)
10 0x0040b91f (setup.exe.EntryPoint+0x8b in setup.exe) (ebp=406aff10)
11 0x404e874d (KERNEL32.DLL.SetThreadExecutionState+0x1a68 in KERNEL32.DLL)
(ebp=406afff4)
12 0x40027d39 (_end+0x4025e1d) (ebp=00000000)
0x419dc051 (UXTHEME.DLL..text+0xb051 in UXTHEME.DLL): subl $4,%esp
Modules:
Address Module Name
0x00400000-0041be00 (PE) D:\setup.exe
0x10000000-1004d000 (PE) C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\SETUP.DLL
0x401b0000-40214000 (PE) NTDLL.DLL
0x40480000-4058b000 (PE) KERNEL32.DLL
0x406c0000-406cc000 (PE) C:\WINDOWS\SYSTEM\VERSION.DLL
0x406d0000-406e3000 (PE) C:\WINDOWS\SYSTEM\LZ32.DLL
0x40710000-40852000 (PE) C:\WINDOWS\SYSTEM\USER32.DLL
0x40870000-408e5000 (PE) C:\WINDOWS\SYSTEM\GDI32.DLL
0x408f0000-40918000 (PE) C:\WINDOWS\SYSTEM\ADVAPI32.DLL
0x40930000-4099f000 (PE) C:\WINDOWS\SYSTEM\OLE32.DLL
0x409c0000-409ec000 (PE) C:\WINDOWS\SYSTEM\RPCRT4.DLL
0x40a10000-40a76000 (PE) C:\WINDOWS\SYSTEM\OLEAUT32.DLL
0x40bd0000-40c42000 (PE) C:\WINDOWS\SYSTEM\X11DRV.DLL
0x41570000-41623000 (PE) C:\WINDOWS\SYSTEM\COMCTL32.DLL
0x41640000-416b9000 (PE) C:\WINDOWS\SYSTEM\SHELL32.DLL
0x416d0000-41719000 (PE) C:\WINDOWS\SYSTEM\SHLWAPI.DLL
0x41940000-4196f000 (PE) C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\IGDI.DLL
0x4196f000-419c9000 (PE) E:\ISP03A9.TMP\_SETUP.DLL
0x419d0000-419df000 (PE) C:\WINDOWS\SYSTEM\UXTHEME.DLL
0x41a50000-41a5c000 (PE) C:\WINDOWS\SYSTEM\CRYPT32.DLL
Threads:
process tid prio
0000000a (D) D:\setup.exe
0000000c 0
0000000b 0 <==
WineDbg terminated on pid a
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-07-12 06:03 -------
Mike,
After some research, I would offer the following assertions, which may need
verification:-
1. On systems that do not have the RDTSC instruction, the High Performance
Counter is fed from a chip at 1.193182 MHz. So, maybe the fall-through value
for frequency->s.LowPart of 1000000 might more accurately be set to 1193182;
2. On systems that do have the RDTSC instruction, the values that
QueryPerformanceCounter() and QueryPerformanceFrequency() return should be
individual clock-cycles and Hz, respectively; i.e. the divisions by 1000 would
seem to be wrong. My supporting evidences for this assertion are:-
a) see http://www.devx.com/SummitDays/Article/16293/1763;
b) RP8 works well on my system if I remove the scaling-down of counter->QuadPart
and frequency->QuadPart from /dlls/kernel/cpu.c.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1215
------- Additional Comments From burpmaster(a)truffula.net 2003-06-12 23:15 -------
Created an attachment (id=427)
--> (http://bugs.winehq.com/attachment.cgi?id=427&action=view)
Workaround in FreeBSD
Well, tracking down all the instances where wine does this is hard, or at least
not as easy as grepping for "recursive call" in the FreeBSD source tree.
So here is a hack to work around this problem by allowing some recursion. Just
apply this patch in /usr/src/lib/libc/stdlib, then cd .., and do make && make
install.
With this patch applied, I no longer get random crashes due to the recursive
call error. Programs which crashed immediately from this error also work now.
I haven't noticed any side-effects from this patch.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1865
Summary: installation error
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: strattonbrazil(a)hotmail.com
When I do the configure or the make install I always get the error:
In file included from /usr/include/openssl/ssl.h:179,
from internet.h:36,
from cookie.c:39:
/usr/include/openssl/kssl.h:136: error: syntax error before '*' token
/usr/include/openssl/kssl.h:149: error: syntax error before '*' token
/usr/include/openssl/kssl.h:150: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:152: error: syntax error before '*' token
/usr/include/openssl/kssl.h:153: error: syntax error before '*' token
/usr/include/openssl/kssl.h:155: error: syntax error before '*' token
/usr/include/openssl/kssl.h:157: error: syntax error before '*' token
/usr/include/openssl/kssl.h:159: error: syntax error before '*' token
/usr/include/openssl/kssl.h:167: error: syntax error before '*' token
In file included from internet.h:36,
from cookie.c:39:
/usr/include/openssl/ssl.h:909: error: syntax error before "KSSL_CTX"
/usr/include/openssl/ssl.h:931: error: syntax error before '}' token
make[2]: *** [cookie.o] Error 1
make[2]: Leaving directory `/home/default/temp/wine-20031118/dlls/wininet'
make[1]: *** [wininet/__install__] Error 2
make[1]: Leaving directory `/home/default/temp/wine-20031118/dlls'
make: *** [dlls/__install-lib__] Error 2
I'm running Fedora and I can't the installation to finish. What exactly is
going wrong?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1536
------- Additional Comments From corentin.fougeray(a)wanadoo.fr 2003-06-12 15:27 -------
I also have this problem. I use a french MS Natural Keyboard Pro (with euro
key). Wine says it doesn't detect my keyboard layout but i can run the notepad
(keyboard responding). But for other applications (including games) no keyboard
: what i type is only printed in the console. I use Linux Mandrake 9.2 with Wine
20031118.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1861
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-05-12 10:51 -------
Sorry, but this bug report tells us nothing, that fixme message does not cause
fatal errors, it is simply a reminder to the developers to improve that function
later. It cannot cause a crash. You will need to debug this program.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=251
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 01:03 -------
probably long gone bug.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=327
Bug 327 depends on bug 251, which changed state.
Bug 251 Summary: codeweavers-wine does not install regapi and uninstaller
http://bugs.winehq.com/show_bug.cgi?id=251
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1860
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 00:47 -------
no content.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1596
------- Additional Comments From bendees(a)cox.net 2003-04-12 20:48 -------
Sorry for the delay. I've since determined that my previous assertion was
wrong: this program doesn't work at all. It looks like it uses it's own
communications DLL's, presumably for security, that don't work under Wine.
I'll be happy to continue to test the GUI difficulties that I was having if
anyone's interested, but I don't see any way of getting this program to work
under Wine and I've decided to use an alternative web-based method instead.
I don't know what to do with this bug, though, whether I should resolve it or
let it stay.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2003-04-12 14:03 -------
Could you perhaps write a test case for that error, e.g. in
dlls/user/tests/wsprintf?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1809
------- Additional Comments From engelbert.gruber(a)ssg.co.at 2003-03-12 22:44 -------
wd97 setup works on 20031118 BUT needs 2 hours on 600MHz to finish.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1863
Summary: VBScript Regular Expression parser: cannot access
results
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ed-winebug(a)leafe.com
I'm using the 20031016 release of Wine on RH8. I have some Visual FoxPro code that needs to
parse regular expressions. The only way to do that is to instantiate a VBScript.RegExp object. The
VBScript classes are part of the Windows Script Host, so I downloaded the Windows Script Host
v5.6 from http://tinyurl.com/b81y, and installed it into Wine without any problems.
The VBScript.RegExp has a pretty clunky interface; it requires several layers of sub-object to get
the results. Here's a sample of the code you need to get a regular expression match. In it, I'm
trying to extract the digits in the middle of a serial number:
loRegEx = CREATEOBJECT("VBScript.RegExp")
loRegEx.Pattern = "[a-z]+([0-9]+)[a-z]+"
loExtract = loRegEx.Execute("The serial number is zx8392ks")
loResult = loExtract.Item(0)
* This next line throws an error
lcDigits = loResult.SubMatches(0)
RETURN lcDigits
If you run that code in Visual FoxPro under Wine, it proceeds along fine until the line indicated.
Trying to access the SubMatches child object of the result item always results in an error message
that reads:
OLE error code 0x80004005: Unknown COM status code
This isn't very informative to me, but I'm hoping that someone here will know how to fix this.
Without being able to access the SubMatches object, using Regular Expressions in VFP is
impossible. I've tried all sorts of expressions and patterns, and they all work well running VFP in
Windows, but throw an error when running under Wine.
In my wine config file, I have the following settings:
; Visual FoxPro 8:
[AppDefaults\\vfp8.EXE\\Version]
"Windows" = "win2k"
[AppDefaults\\vfp8.EXE\\DllOverrides]
"oleaut32" = "native, builtin"
"odbc32" = "native"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 19:03 -------
I've managed to get Steam up and running--that would probably mean that this is
*not* a bug.
Just a couple of quick steps to resolve the crash that follows shortly after
those lines:
Download and install (not sure if this is mandatory, but on a hunch as to the
CoCreateInstance message):
http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbr…
Then tweak the DllOverrides... Here's a setup that was working for me (it's a
hacked together list, it's quite likely I could do it cleaner, I just did a
one-pass brute force thing)...
[AppDefaults\\Steam.exe\\DllOverrides]
"*comctl32" = "builtin"
"mapi" = "native, builtin"
"mapi32" = "native, builtin"
"ole32" = "native, builtin"
"compobj" = "native, builtin"
"ole2" = "native, builtin"
"ole2nls" = "native, builtin"
"ole2conv" = "native, builtin"
"ole2prox" = "native, builtin"
"ole2thk" = "native, builtin"
"storage" = "native, builtin"
"olepro32" = "native, builtin"
"rpcrt4" = "native"
"oleaut32" = "native"
"msvcrt" = "native, builtin"
"wininet" = "native"
"setupapi" = "native, builtin"
"devenum" = "native, builtin"
"quartz" = "native, builtin"
"urlmon" = "native"
"shdocvw" = "native"
"jscript" = "native, builtin"
"wintrust" = "native, builtin"
"shlwapi" = "native, builtin"
"secur32" = "native, builtin"
"crypt32" = "native"
"ddraw" = "native, builtin"
"shlwapi" = "native, builtin"
"*user.exe" = "native,builtin"
"*" = "builtin, native"
Now to get hl.exe running! ;)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1861
Summary: fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal
yet.
Product: Wine
Version: 20011108
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P4
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: chandleg(a)wizardsworks.org
This is an application for a Tax Company, who is getting ready to gear up for
Tax Season. The exact Error is:
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
It's an immediate fail, Please let me know what other info you need.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 12:04 -------
I'm running into the same problem with CVS build from last night. I'm going to
do some debugging work tonight to see if I can sort this out--that will let us
know what's getting messed up. I'm looking at the source of the function, and,
well it looks pretty straightforward... Unless a define got messed up
somewhere (unlikely, I would think) I can't see what the problem would be.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1860
Summary: download
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mester.gulerod(a)mail.dk
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-01-12 17:02 -------
Yeah, that would be good. I don't have a cross compiler setup at the moment
though. I'll try and remember to talk to some people who do, writing the test
case isn't the hard part, getting it into EXE form is.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-01-12 16:05 -------
Mike,
The value of cpuHz on my system is 451083000 - i.e. nicely consistent with a
nominal clock speed of 450MHz.
Does the 'frequency' structure mentioned in that section of Wine code actually
exist in that form in Windows and, if so, is it accessible? I have a dual-boot
system (SUSE 9.0/Win98SE), so if a simple test program could be written to
display the value of frequency->QuadPart under Windows, it would be possible to
see what values different speed machines return - which ought to make it
possible to refine Wine's formula for it accordingly.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1859
Summary: clicking on "disk" crashes "HEX WOKRSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) click on "Disk"
5) select "open drive"
expected result: wine does not work with real disks... therefore it should
ignore RAW access to the disk
real result: steps from above cause wine and app to crash
workaround: do not slick on "disk" --> "open drive"
wine version: CVS wine-20031129
system: RH9 kernel 2.4.20-8
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1858
Summary: tab switching does not work for "HEX WORKSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) open binary file_1
5) open another binary file_2
expected result: user should be able to switch between file_1 and file_2 by
clicking with left mouse button on tab "file_1" or "file_2"
real result: last loaded file is active and clicking on the tab does not switch
from one file to the other one
workaround: user can switch between files going through pulldown menue
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1857
Summary: cs1005.exe (cs 1.5 patch utility) reports kernel32.dll
missing
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kyrsjo(a)solution-forge.net
When i try to upgrade cs to version 1.5 on my Fedora Core 1 system, i get an
error message stating:
"Error" "Could not load the DLL libary C:\WINDOWS\SYSTEM\kernel32.dll Bad exe
format for" "Ok"
when i take a look in my .wine/c/windows/system, it turn out that there is very
few .dll's there, and certainly no kernel.dll
when i run a quick locate kernel.dll, it turns out to be in
/usr/lib/wine/wine/kernel32.dll.so
tried linking this one into the windows\system folder, but that did'nt work out
as well.
I installed from an fedora core 1 rpm, and had to fiddle with the prelinker
(just a config file, but i'm no hacker) to get it working.
The install prog works fine, and cs 1.0 menues also.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1479
------- Additional Comments From soontir_fel(a)hotmail.com 2003-30-11 15:06 -------
Confirmed on 5.1 with 2003-11-18 WINE....but BugZilla won't let me confirm it
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-30-11 14:36 -------
What is the value of cpuHz before the division on your system then? If you look
at the code you can see this comment:
#if defined(__i386__) && defined(__GNUC__)
if (IsProcessorFeaturePresent( PF_RDTSC_INSTRUCTION_AVAILABLE )) {
/* The way Windows calculates this value is unclear, however simply
using the CPU frequency
gives a value out by approximately a thousand. That can cause some
applications to crash,
so we divide here to make our number more similar to the one Windows
gives */
frequency->QuadPart = cpuHz / 1000;
return TRUE;
}
#endif
As for simply switching it off, well, that's a possibility but some apps use
this value to calibrate themselves (like games) so I'm not sure we want to rip
it out just yet.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mike(a)theoretic.com
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=280
------- Additional Comments From marcus(a)jet.franken.de 2003-30-11 13:49 -------
note: the event created/signaled debuglines come from my SUSE rpms. sorry for
leaving debug in.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1587
------- Additional Comments From juan_lang(a)yahoo.com 2003-30-11 10:51 -------
Pls make sure you're using builtin network dlls, iphlpapi especially since it's
new as of wine snapshot 20030618. I have in my ~/.wine/config's DllOverrides:
"iphlpapi" = "builtin, native"
Others you might want to check are winsock and wsock32.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=280
------- Additional Comments From wine(a)staerk.de 2003-30-11 06:21 -------
Created an attachment (id=425)
--> (http://bugs.winehq.com/attachment.cgi?id=425&action=view)
No network communication with IOMeter
Download the latest (2003.05.10) IOMeter package for Windows from
www.iometer.org. Extract the debug versions of the frontend (IOMeter.exe) and
the backend (dynamo.exe) to your fake_windows-directory.
Call "wine c:\\iometer.exe" and, in another shell,
call "wine c:\\dynamo.exe /i 127.0.0.1".
You will find that both programs work correctly (congratulations), but do not
see each other accross the network. Each time, dynamo.exe tries to connect, the
msg appears:
event created : name=L"__SystemHeapEvent", initial is 0
event_signaled : name=L"__SystemHeapEvent"signaled is 1
The relevant error msg seems to me:
fixme:mswsock:AcceptEx not implemented
I do the port of IOMeter to Wine for the Maintainer of the project, Daniel
Scheibli. You may ask me anything about iometer.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=343
------- Additional Comments From tmpfreire(a)terra.com.br 2003-28-11 10:37 -------
Let me continue my report:
(wine 20031118)
(NOT using "ole32" = "native")
This is what wine prints when I:
a) Open word;
b) Do nothing;
c) Close word.
notes:
i) word tries to save normal.dot, and says that the disk might be full or
read-only.
ii) It asks for me to save with another name displaying a dialog box.
iii) after I cancel, I tell it to close again and then word only asks me
whether I want to save normal.dot and I say 'no', then it closes.
iv)Displayed in the command line during this simple process:
fixme:x11drv:X11DRV_GetDeviceCaps (0x1c0): CAPS1 is unimplemented, will return
0
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
fixme:storage:StorageImpl_Commit (4): stub!
fixme:storage:StorageImpl_Commit (4): stub!
fixme:storage:StorageImpl_Commit (4): stub!
fixme:hook:NotifyWinEvent (32774,0x30032,52,3)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,33)-stub!
fixme:hook:NotifyWinEvent (32774,0x30032,26,7)-stub!
fixme:hook:NotifyWinEvent (32777,0x30032,52,0)-stub!
fixme:hook:NotifyWinEvent (32774,0x30032,52,3)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,16)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,17)-stub!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1856
Summary: Half-Life mod : Natural Selection sound
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: sirlagz(a)westnet.com.au
On the versions after 20030709, the sound on this mod is slowed down a lot.
only occurs on this mod though
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1855
Summary: TzSpecificLocalTimeToSystemTime
SystemTimeToTzSpecificLocalTime don't use hour for
daylight saving
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: eric(a)jesover.net
_DayLightCompareDate don't use the hour in TIME_ZONEINFORMATION for the swith
Eric JESOVER
eric(a)jesover.net
--- time.c Wed Nov 26 19:24:13 2003
+++ timenew.c Wed Nov 26 19:21:36 2003
@@ -187,7 +187,8 @@
/***********************************************************************
* _DayLightCompareDate
*
- * Compares two dates without looking at the year
+ * Compares two dates without looking at the year must look at time
+ * for daylight saving not changing at 00:00
*
* RETURNS
*
@@ -294,6 +295,9 @@
if (date->wDay > limit_day)
return 1;
+
+ if( date->wHour < compareDate->wHour )
+ return -1;
return 0; /* date is equal to the date limit. */
}
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1854
Summary: IpHlpDllEntry: This is an CHICAGO product.
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tuinslak(a)pandora.be
When I try to start Warcraft3, from an other pc (in network), I get this error.
some other programs, I try to open, give the same error. I updated my wine to
wine-20031118, and it gives the same error. (It gives an error about my keyboard
too, but that's not a problem.)
It's this error:
IpHlpDllEntry: This is an CHICAGO product.
err:module:LdrInitializeThunk Main exe initialization failed, status c0000142
I run Gentoo linux, kernel: 2.4.20-gentoo-r8
"yeri@fireball (~/Warcraft III): wine War3.exe
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (Belgian keyboard layout) for scancode mapping.
Please define your layout in dlls/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
fixme:file:DeviceIoControl Unimplemented control 1 for VxD device VDHCP
fixme:file:DeviceIoControl Unimplemented control 116 for VxD device VNB
IpHlpDllEntry: This is an CHICAGO product.
err:module:LdrInitializeThunk Main exe initialization failed, status c0000142"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1853
Summary: problem with sound (wodUpdate) prevents Space Empires IV
from running
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jeremy(a)angelar.com
CC: jeremy(a)angelar.com
Starting Space Empires IV Gold with wine-20031108. The good news is that icons
now draw in this game. The bad news is that as soon as it tries to play a
sound, it gets caught in a loop putting out this message repeatedly:
err:wave:wodUpdatePlayedTotal ioctl(/dev/dsp, SNDCTL_DSP_GETOSPACE) failed
(Broken pipe)
Sound worked _before_ in this game. This is on a Mandrake 9.2 box, Athlon
1.4GHz, Sound Blaster Live! card, which is correctly configured to play sounds
under linux. Video is an AGP GeForce2 MX. Let me know if any other information
would be useful.
When I can keep the game up long enough to turn off sound inside it, it runs great!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
AAnarchYY(a)netscape.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1852
------- Additional Comments From b.rowlingson(a)lancaster.ac.uk 2003-25-11 08:58 -------
Renamed to 8.3 compliant filename (WinBGS14.exe) and it works fine.
However, some problems running the program that doubtless will result in more
bug reports later....
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
------- Additional Comments From AAnarchYY(a)netscape.net 2003-25-11 08:04 -------
Got similar results with cvs build. only difference was:
err:region:CombineRgn Invalid rgn=(nil)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1852
Summary: LoadModule16 error running WinBUGS
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: b.rowlingson(a)lancaster.ac.uk
Using wine-20031118-1rh8winehq rpm from sourceforge page on RH8 box.
Trying to run WinBUGS (http://www.mrc-bsu.cam.ac.uk/bugs/winbugs/WinBUGS14.exe)
- error produced is:
$ wine /nobackup/rowlings/CD/WinBUGS14.exe
err:module:MODULE_LoadModule16 Serious trouble. Just loaded module
'Z:\nobackup\rowlings\CD\WinBUGS14.exe' (hinst=0x11af), but can't get module
handle. Filename too long ?
winevdm: can't exec 'Z:\nobackup\rowlings\CD\WinBUGS14.exe': error=6
Occurs when run as root, or as normal user.
I can get wine to run other exe files -even with longer path and filenames, so
I dont think it is a case of 'filename too long'.
Baz
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
Summary: err:clipping:CLIPPING_UpdateGCRegion hVisRgn is zero
when running radio(a)netscape.exe
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: AAnarchYY(a)netscape.net
Installed radio@netscape plus. That installed fine, First run it installed Real
Player and that also went fine. Then as it tried to connect to the server it
hangs for about 5 seconds, spits out some errors, and terminates.
[kilroy@localhost Program]$ wine radio\(a)netscape.exe
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 112 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 112 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:clipping:CLIPPING_UpdateGCRegion hVisRgn is zero. Please report this.
I am using a fresh compile of build 20031118. Mandrake 9.1 kernel 2.4.21-0.13mdk
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1850
Summary: BDE 5.2.0.2 Install Crashes
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cristao(a)estadao.com.br
+ Wine version 20031016 and 20031118
+ Red Hat Linux 9 in PIII 500MHz
+ gcc 3.2.2-5
+ Don't using Windows
+ Problem: BDE 5.2.0.2 Setup Install Utility
(http://www.nlpark.com/downloads/BDESetup.EXE)
+ Command line: wine BDESetup.exe
+ Re-running the program with "--debugmsg +relay" still don't works
When the installation gets 80%-90%, it crashes saying that KERNEL32 is a BAD
format EXE.
In earlier versions of wine (I've tested with 20030115, 20030618 and 20030811),
it works correctly.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1797
dave(a)aagames.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From dave(a)aagames.co.uk 2003-23-11 10:08 -------
This now works for me...
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1198
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
------- Additional Comments From spetreolle(a)yahoo.fr 2003-22-11 22:39 -------
Is this bug still valid ?
In order to remove the amstream.dll problem (Video playing error box),
you could try to reinstall ActiveMovie.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1849
Summary: heap error while trying to run TrueSync Desktop
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: plison(a)agl.ucl.ac.be
I'm trying to run the "TrueSync Desktop" app (the equivalent of Hotsyncfor
non-Palm handhelds, but without any Linux port, unfortunately), and I get the
following error:
err:heap:HEAP_ValidateInUseArena Heap 40360000: in-use arena 403e7eb8next block
has PREV_FREE
flagwine: Unhandled exception (thread 0009), starting debugger...
The loading screen "TrueSync Desktop" is shown, but it doesn't go anyfurther.
I'm using wine-20031016 (compiled with the -npt1 option), and a debiandistro
with a custom kernel compiled with 2,6,0-test9.
Most windows app. I tested ran without problem. Please note that I tried Wine
for only a few weeks, so I'm quite a newbie on the matter.
Do you have any idea on how to fix this? Thank you for your help,
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1848
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1848
Summary: User32 - TrackPopupMenu returns wrong results
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows TrackPopupMenu returns true, if the user clicks outside of the
menu (the menu disappears - menu is being canceled). With WINE the
TrackPopupMenu returns false in such a case, which should indicate the API call
has failed (which hasn't). Calling GetLastError gives you a weird error (usually
access denied). The problem lies in controls/menu.c. It should only return
false, if the wine server call failed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1847
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1086
------- Additional Comments From brett.boren(a)rttc.army.mil 2003-21-11 06:55 -------
Can duplicate this bug regularly on a win16 program I use.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1847
Summary: User32 - ReleaseCapture returns wrong results
Product: Wine
Version: 20030813
Platform: All
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows, calling ReleaseCapture without having captured the mouse still
returns TRUE. WINE returns FALSE. Currently I hardly can imagine a situation
this API call could fail. The only exception may be calling ReleaseCapture
inside WM_CAPTURECHANGED, which is sent inside ReleaseCapture. (But I never
tried this...)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1846
Summary: Microsoft Office 2000 on CVS 19th. nov 2003
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: eleknader(a)phnet.fi
Microsoft Office 2000 installation is broken. Tested wine versions:
wine-20031016
cvs 19th. nov 2003
Installation goes normally. Installed Word, Excel, Powerpoint without Office
Assistant.
End of installation: Installer asks whether to shut down now or later. I tried
both, shut down later and shut down now. Both result same error:
First startup of Winword or Excel: starts configuring installation (this
should not happen, because the components I chose, where to be installed
fully, and the rest 'Not available'). After this, application starts up and
says in a dialog 'Missing Registry Information': Required registy information
is missing, and this application cannot be run. Please rerun setup to correct
this problem.
I also tried running wineboot after install (before trying to start), and this
results the same problem.
Since this seems like a register problem, I'll try to run installation on a
previous version of wine to see what is the difference between the registers.
Full debug log available if necessary.
Eleknader
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |20030813
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC
Version|unspecified |20030813
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
Summary: Return values of CharUpperA and CharLowerA
Product: Wine
Version: unspecified
Platform: Other
URL: http://www.apis.de
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
The return values for CharUpperA and CharUpperB should return 32-bit ints with
the upper 16 bits being 0 if the operand is a single character. Passing single
characters with the 8th-bit being set, may result in 32bit results with the
upper 16 bits set. This may confuse apps taking the whole 32bit value. We
detected this bug, while testing our software with WINE.
The problem seems to lie in dlls/user/lstr.c (sign extension problem?).
Looking at the code in lstr.c I saw a SetLastError. This may destroy a
SetLastError of another call. Here is an excerpt from the Microsoft
documentation for this call:
------------
The CharUpper function converts a character string or a single character to
uppercase. If the operand is a character string, the function converts the
characters in place.
....
There is no indication of success or failure. Failure is rare. There is no
extended error information for this function; do not call GetLastError.
------------
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
Summary: Point Size in DLG_TEMPLATE may be negative (with
DS_SETFONT)
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows the pointSize parameter (for the FONT in the DLG_TEMPLATE
struct) may be a signed 16-bit integer. With WINE this integers get's
converted to an unsigned int resulting in huge font for the dialog. The size
of the dialog is being computed based on this font and results in invalid
parameters for CreateWindow, that may cause a termination of WINE. We detected
this problem testing our software with WINE.
If I understood things right the file dlls/user/dialog16.c contains the code
causing the problem:
Line 263 ....
if (result->style & DS_SETFONT)
{
result->pointSize = GET_WORD(p);"use a macro that gets signed 16bit
int"
p += sizeof(WORD);
result->faceName = p;
p += strlen(p) + 1;
TRACE(" FONT %d,'%s'\n", result->pointSize, result->faceName );
}
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1843
Summary: Printer error
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: maxis(a)codetel.net.do
when i run my application (one i wrote in delphi), the application runs fine,
but it shows a message "Cannot select default printer"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1841
Summary: wrong region drawn
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: medbi01(a)accpac.com
Dialog contains a bitmap. On redrawing the wrong half of the bitmap gets
redrawn; i.e. when exposing a region the area that was not exposed gets
repainted rather than the region exposed.
(The actual case that demonstrates this is part of the ACCPAC installation
program.)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:59 -------
closing
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:59 -------
not bug in wine, "feature" of battle.net, resolving invalid, see above notes..
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:58 -------
Ok, well Im unsure why in the world I resolved this one as a duplicate, but
lets try resolving it as invalid instead.. If you have a problem with any
Blizzard game not connecting to battle.net using a cracked exe, see notes
above, if you are having a problem even getting Diablo II to run, unsing either
a cracked exe or the original, see Bug 926, and if you are having a problem
getting any other Blizzard game to even run, please open a new bug.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1840
Summary: Support for MSCMS.DLL?
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jvp(a)lateapex.net
This isn't a bug but rather a request for DLL support. The MS Color Management
System (mscms.dll) isn't included with WINE. Applications such as PhaseOne's
Capture One (http://www.c1dslr.com/) require it. Are there plans to support it?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1839
Summary: bad window border on mozilla
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
CVS version 2003/nov/17
I installed Mozilla 1.5 for Windows on top of wine.
Near the border of the window, it does not look fine.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1838
Summary: max payne setup doesn't work
Product: Wine
Version: CVS
Platform: PC
URL: http://www.rockstargames.com/maxpayne/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I'll attach the log and backtrace.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-16-11 17:03 -------
The problem with the autodetect must be in the program, no in wine, as there is
the same problem on windows. There a still a few things wrong, basicly the game
crashes from time to time. The most common one is this
Unhandled exception: page fault on read access to 0x0000000c in 32-bit code
(0x409ff447).
In 32-bit mode.
0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL): movl
0x0(%eax,%edx,1),%eax
Wine-dbg>bt
Backtrace:
=>0 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL) (ebp=406bf7f8)
1 0x40a001a9 (D3D8.DLL.EntryPoint+0x16cc9 in D3D8.DLL) (ebp=406bf900)
2 0x409f7d38 (D3D8.DLL.EntryPoint+0xe858 in D3D8.DLL) (ebp=406bf934)
3 0x10069eea (LS3DF.DLL.dbgPrintf1+0x1c5a in LS3DF.DLL) (ebp=406bf9dc)
4 0x10046ca0 (LS3DF.DLL.?LineLineIntersect@@YG_NABUS_vector@@000AAM1@Z+0x172e0
in LS3DF.DLL) (ebp=00000000)
Wine-dbg>
I usually get it if I have a terrible car crash, or not long after running
somebody over.
I also got this one
Unhandled exception: assertion failed in 32-bit code (0x400b6d71).
In 32-bit mode.
0x400b6d71 (MSVCRT.DLL.frexp+0xc71): movl %edx,%ebx
Wine-dbg>bt
Backtrace:
=>0 0x400b6d71 (MSVCRT.DLL.frexp+0xc71) (ebp=4202ff54)
1 0x40046b8b (_end+0x4044e7b) (ebp=4202ff74)
2 0x400b6b04 (MSVCRT.DLL.frexp+0xa04) (ebp=4202ff94)
3 0x400b81e0 (NTDLL.DLL.atol+0x220) (ebp=420300c4)
4 0x400b00ad (_end+0x40ae39d) (ebp=42030104)
5 0x412d32f7 (DSOUND.DLL.DllCanUnloadNow+0x2687 in DSOUND.DLL) (ebp=42030144)
6 0x412d3420 (DSOUND.DLL.DllCanUnloadNow+0x27b0 in DSOUND.DLL) (ebp=42030158)
7 0x408d6515 (WINMM.DLL.mmsystemGetVersion+0x175 in WINMM.DLL) (ebp=42030180)
8 0x408d6697 (WINMM.DLL.mmsystemGetVersion+0x2f7 in WINMM.DLL) (ebp=420301ac)
9 0x408d67b7 (WINMM.DLL.mmsystemGetVersion+0x417 in WINMM.DLL) (ebp=420301c8)
10 0x404f826c (KERNEL32.DLL.GetDOSEnvironment16+0x3cc in KERNEL32.DLL)
(ebp=4203029c)
11 0x40231f14 (NTDLL.DLL.RtlVerifyVersionInfo+0xa44 in NTDLL.DLL) (ebp=42030ad4)
12 0x40044600 (_end+0x40428f0) (ebp=42030bd4)
13 0x40168a37 (MSVCRT.DLL.strftime+0x3d447) (ebp=00000000)
Wine-dbg>
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2003-16-11 12:00 -------
D3DZBUFFERTYPE of 2 is W buffering which GL doesnt support (well, we dont
support it in wine, certainly). As per my previuos update, disable it and see
if the graphics improve.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 11:14 -------
OK, the graphics really sucks, but it's all bugs in the game, the transparent
buildings, and cars. Unless this isn't caused on windows by the fact that I only
have a 8mb video ram on my windows box, the only real wine bug is that the game
crashes in wine, you can find the backtrace in my previous post.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 11:05 -------
The flashing eyes aren't a wine bug, there a bug in the game, they appear on
directx 9.0b on windows.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 10:37 -------
Log with todays CVS
fixme:d3d:IDirect3DDevice8Impl_SetRenderState Unrecognized/Unhandled
D3DZBUFFERTYPE value 2
lots identical of messages
fixme:d3d:IDirect3DDevice8Impl_SetRenderState Unrecognized/Unhandled
D3DZBUFFERTYPE value 2
wine: Unhandled exception (thread 000f), starting debugger...
WineDbg starting on pid e
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'C:\Program Files\MafiaDemo\Game.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x40200000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40880000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40810000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x406e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x408b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40930000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\D3D8.DLL' (0x409e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL' (0x41290000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT8.DLL' (0x41270000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL' (0x412c0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\OGG.DLL' (0x412ea000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL' (0x41400000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\VORBIS.DLL'
(0x412f7000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\VORBISFILE.DLL'
(0x40a28000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\RW_DATA.DLL'
(0x41430000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\LS3DF.DLL'
(0x10000000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\IJOY.DLL' (0x41445000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\IPHLPAPI.DLL' (0x414b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WS2_32.DLL' (0x41490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WSOCK32.DLL' (0x41470000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\INET.DLL' (0x41455000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x41590000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x41770000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x417c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x417a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x418f0000)
Unhandled exception: page fault on read access to 0x0000000c in 32-bit code
(0x409ff447).
In 32-bit mode.
0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL): movl
0x0(%eax,%edx,1),%eax
Wine-dbg>bt
Backtrace:
=>0 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL) (ebp=406bf7f8)
1 0x40a001a9 (D3D8.DLL.EntryPoint+0x16cc9 in D3D8.DLL) (ebp=406bf900)
2 0x409f7d38 (D3D8.DLL.EntryPoint+0xe858 in D3D8.DLL) (ebp=406bf934)
3 0x10069eea (LS3DF.DLL.dbgPrintf1+0x1c5a in LS3DF.DLL) (ebp=406bf9dc)
4 0x10046ca0 (LS3DF.DLL.?LineLineIntersect@@YG_NABUS_vector@@000AAM1@Z+0x172e0
in LS3DF.DLL) (ebp=00000000)
Wine-dbg>b
Breakpoint 1 at 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL)
Wine-dbg>quit
WineDbg terminated on pid e
[ivan@localhost MafiaDemo]$
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1091
------- Additional Comments From micha(a)freemail.com.au 2003-14-11 09:34 -------
Dimi,
Sorry I was offline for some time. Attached the demo again.
I checked, the problem still exists as of 20031016.
Btw, Jason may be right. It does only affect some of the controls,
in my case the static but not the button.
I am still not reachable under the registered email address.
Temporarily I am at: mick37(at)gmx.de
Micha
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1755
bruce.armstrong(a)teamsybase.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bruce.armstrong(a)teamsybase.c
| |om
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1755
------- Additional Comments From bruce.armstrong(a)teamsybase.com 2003-14-11 09:33 -------
Have you looked at bug 807 to see if this is a duplicate of that (which is now
fixed)?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1837
------- Additional Comments From the-fallen(a)web.de 2003-14-11 08:33 -------
The complete InstMsiA consoleoutput with -debugmsg warn+all
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA ANSI BUILD
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Running on Win9X.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Attempting to get function GetWindowsDirectoryA/W.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Successfully loaded the specified procedure
from kernel32.dll.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of mspatcha.dll is older or
equal than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msi.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msihnd.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msimsg.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:module:load_builtin_dll cannot open .so lib for builtin L"msimsg.dll":
/usr/lib/wine/lib/wine/msimsg.dll.so: cannot open shared object file: No such
file or directory
warn:module:load_dll Failed to load module L"C:\\WINDOWS\\SYSTEM\\msimsg.dll";
status=c0000135
warn:ver:VERSION_GetFileVersionInfo_PE Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:ver:VERSION_GetFileVersionInfo_16 Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unable to get version info for
C:\WINDOWS\SYSTEM\msimsg.dll. Error 2.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msimsg.dll is newer than
existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found unused RunOnce entry : InstMsi0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found unused RunOnce entry : InstMsi4
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Attempting to create folder C:\WINDOWS\Installer.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Successfully loaded the specified procedure
from msi.dll.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Temporary store located at :
C:\WINDOWS\Installer\InstMsi14
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe, MsiExec.exe /regserver
/qn)
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was:
0.warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found MSI Database: instmsi.msi
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA No localized transform available.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\AppPatch\msimain.sdb not found.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA msimain.sdb in the package will be installed.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Running upgrade to MSI from temp files at
C:\WINDOWS\Installer\InstMsi14. [Final Command: 'X:\IXP001.TMP\msiinst.exe /i
instmsi.msi MSIEXECREG=1 /m /qb+! INSTALLSDB=1']
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe,
X:\IXP001.TMP\msiinst.exe /i instmsi.msi MSIEXECREG=1 /m /qb+! INSTALLSDB=1)
warn:debugstr:OutputDebugStringA
warn:storage:StgStreamImpl_Read read 688 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 38 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 664 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:module:load_builtin_dll cannot open .so lib for builtin L"MSCOREE.dll":
/usr/lib/wine/lib/wine/mscoree.dll.so: cannot open shared object file: No such
file or directory
warn:storage:StgStreamImpl_Read read 420 instead of the required 1024 bytes !
warn:module:load_builtin_dll cannot open .so lib for builtin L"SAGE.dll":
/usr/lib/wine/lib/wine/sage.dll.so: cannot open shared object file: No such file
or directory
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 44 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 132 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 252 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 180 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 8 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was: 1603.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of mspatcha.dll is older or
equal than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msi.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msihnd.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msimsg.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:module:load_builtin_dll cannot open .so lib for builtin L"msimsg.dll":
/usr/lib/wine/lib/wine/msimsg.dll.so: cannot open shared object file: No such
file or directory
warn:module:load_dll Failed to load module L"C:\\WINDOWS\\SYSTEM\\msimsg.dll";
status=c0000135
warn:ver:VERSION_GetFileVersionInfo_PE Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:ver:VERSION_GetFileVersionInfo_16 Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unable to get version info for
C:\WINDOWS\SYSTEM\msimsg.dll. Error 2.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msimsg.dll is newer than
existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Finished install.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unregistering the installer from the temporary
location.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe, MsiExec.exe
/unregserver /qn)
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was:
0.warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Deleting the RunOnce value for registering the
installer from the temp. folder.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Exiting msiinst.exe with error code 1603.
warn:debugstr:OutputDebugStringA
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1837
Summary: Strange errors while installing InstMsiA
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P4
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: the-fallen(a)web.de
Hi!
When i attempt to install Msi with the InstMsiA installer i get very strange
errorcodes in the warn+all console output which look like this:
[quote]
warn:storage:StgStreamImpl_Read read 8 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
[/quote]
I dont know what this means and i got those errors with several other programs
which all use installshield. Can anybody help me? I use mostly native dlls but
no original registry.
THX in advance!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1763
------- Additional Comments From raulschmidtf(a)ig.com.br 2003-13-11 14:44 -------
Wine 20031016 solves part of the problem. Now setup for Lotus Notes stops at 66%.
But the program can run slowly in a wine/windows install. Autocad continues to
fail to install or run. I previously had the two programs running OK in red hat
7 and it's strange that they don't run anymore.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From james(a)icionline.ca 2003-13-11 14:43 -------
Hi,
I guess this isn't a very serious problem for me afterall. I get the error
message repeatedly while the game is running, but everything seems to work
great! I just finished playing a multiplayer game with my brother also.
TreadMarks uses UDP for multiplayer games. I dont think TreadMarks even has IPX
support.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1831
seemueller(a)fhm.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|trivial |critical
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-13-11 13:11 -------
Hi,
ntstatus.h:#define STATUS_OBJECT_TYPE_MISMATCH 0xC0000024
Not sure what this means, though.
You should definitely retry with the IPX improvements submitted recently.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From james(a)icionline.ca 2003-13-11 13:07 -------
I get this error after I load up the TreadMarks Demo v1.6.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1792
------- Additional Comments From x86zman(a)bigfoot.com 2003-13-11 05:41 -------
Max Payne (1) now Works Flawlessly with Wine-CVS_20031112 (well, it doesn't play
the cut-scenes but who cares ! :)))
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1810
x86zman(a)bigfoot.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #404 is|0 |1
obsolete| |
Attachment #405 is|0 |1
obsolete| |
------- Additional Comments From x86zman(a)bigfoot.com 2003-13-11 05:08 -------
Created an attachment (id=417)
--> (http://bugs.winehq.com/attachment.cgi?id=417&action=view)
a new Trace Log (Wine-CVS_20031112)
Here's a new Trace Log (Wine-CVS_20031112)... MaxPayne2 now almost loads - but
ceases, again - a second before the game starts. :(
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1831
seemueller(a)fhm.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-12-11 15:45 -------
Mike,
I have verified that RP8 does work under Windows on my system.
Changing the static initialiser to various values less than my speed had no
beneficial effect.
I have found that if frequency->QuadPart (in QueryPerformanceFrequency())
is changed to return a value of >= 1000000 (and, I would suggest, <
5000000), then the RM8 video works well. Of course, I have no idea what
this element represents, but I wonder whether it can be assigned a fixed
value of 1000000, rather than cpuHz / 1000(?).
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1410
------- Additional Comments From puoti(a)inwind.it 2003-12-11 12:19 -------
After a few minutes of trying to start the game, I get this
WineDbg starting on pid 8
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'C:\Program Files\Microsoft Games\StarLancer
Trial\lancer.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x40200000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x406d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40840000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40710000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x408b0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\BINKW32.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL' (0x40920000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSS32.DLL' (0x21100000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40960000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x40a90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x40ae0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x40a20000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\SRMEMORY.DLL' (0x40b6c000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x40bc0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x40bb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40c90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x41560000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x415b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x41590000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x416f0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\LANGUAGE.DLL' (0x42050000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DMUSIC.DLL' (0x4a4a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RICHED32.DLL' (0x422c0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MP3DEC.ASI' (0x26f00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSA3D.M3D' (0x22100000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSA3D2.M3D' (0x22200000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDOLBY.M3D' (0x22700000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDS3DH.M3D' (0x22400000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDS3DS.M3D' (0x22300000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SH.M3D' (0x22a00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SL.M3D' (0x22900000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SN.M3D' (0x22b00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSEAX.M3D' (0x22500000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSEAX2.M3D' (0x22c00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSFAST.M3D' (0x22600000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSRSX.M3D' (0x22d00000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL' (0x4a4c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DDRAW.DLL' (0x4cce0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\SRD3D.DLL' (0x4a880000)
Loaded debug information from 32bit DLL 'C:\PROGRAM FILES\MICROSOFT
GAMES\STARLANCER TRIAL\W32SAL.DLL' (0x4d75c000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\WINVFX16.DLL' (0x4d723000)
Unhandled exception: assertion failed in 32-bit code (0x400b6d71).
In 32-bit mode.
0x400b6d71 (NTDLL.DLL.toupper+0x64d1): movl %edx,%ebx
Wine-dbg>bt
Backtrace:
=>0 0x400b6d71 (NTDLL.DLL.toupper+0x64d1) (ebp=4c880f54)
1 0x40046b8b (_end+0x4044e7b) (ebp=4c880f74)
2 0x400b6b04 (NTDLL.DLL.toupper+0x6264) (ebp=4c880f94)
3 0x400b81e0 (NTDLL.DLL.atol+0x220) (ebp=4c8810c4)
4 0x400b00ad (_end+0x40ae39d) (ebp=4c881104)
5 0x4a4db2b7 (DSOUND.DLL.DllCanUnloadNow+0x2687 in DSOUND.DLL) (ebp=4c881144)
6 0x4a4db3e0 (DSOUND.DLL.DllCanUnloadNow+0x27b0 in DSOUND.DLL) (ebp=4c881158)
7 0x408d6515 (WINMM.DLL.mmsystemGetVersion+0x175 in WINMM.DLL) (ebp=4c881180)
8 0x408d6697 (WINMM.DLL.mmsystemGetVersion+0x2f7 in WINMM.DLL) (ebp=4c8811ac)
9 0x408d67b7 (WINMM.DLL.mmsystemGetVersion+0x417 in WINMM.DLL) (ebp=4c8811c8)
10 0x404fb5cc (KERNEL32.DLL.GetDOSEnvironment16+0x3cc in KERNEL32.DLL)
(ebp=4c88129c)
11 0x40231f14 (NTDLL.DLL.RtlVerifyVersionInfo+0xa44 in NTDLL.DLL) (ebp=4c881ad4)
12 0x40044600 (_end+0x40428f0) (ebp=4c881bd4)
13 0x40168a37 (NTDLL.DLL.memcpy+0x60307) (ebp=00000000)
Wine-dbg
>So after turning the mouse I was able to play the game.
How did you do that?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1836
Summary: midtown madness trial doesn't work.
Product: Wine
Version: CVS
Platform: Other
URL: http://www.microsoft.com/games/midtown/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I'm attaching a ddraw log.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.