http://bugs.winehq.org/show_bug.cgi?id=18734
Summary: DlgDirList(DDL_DRIVES|DDL_DIRECTORY) on 16-bits
displays files on listbox in Windows but not Wine.
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch, source, win16
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a_villacis(a)palosanto.com
Created an attachment (id=21484)
--> (http://bugs.winehq.org/attachment.cgi?id=21484)
Screenshot of problem (QEMU virtual session and Wine, side by side)
When an 16-bit Windows application displays a listbox and manually fills it
with DlgDirList (not as a part of a Common Dialog), the flag combination
DDL_DRIVES|DLL_DIRECTORY should make files appear according to the set filter.
Wine does not do this, as it (incorrectly) appends DDL_EXCLUSIVE to the bitmask
of flags before delegating to 32-bit code.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21404
Summary: winedbg does not support fixed host:port parameter
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myvonkpos(a)mweb.co.za
If using winedbg to debug Windows apps in a Linux IDE is to become practical
winedbg --gdb --no-start needs an extra parameter to specify a fixed host:port
TCP connection, similar to what gdbserver has. Currently the port is chosen at
random, which means IDEs have to be reconfigured on every debug attempt.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24374
Summary: Driller fails to run
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://download.ovinebydesign.com/driller/download.asp
x
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=30720)
--> (http://bugs.winehq.org/attachment.cgi?id=30720)
terminal output
Driller is a freeware remake of a classic 3D adventure game, which was quite
popular in the 8-bit computer era.
The standalone executable Driller.exe fails to run in Wine, showing only a
messagebox, saying:
'Error! User lib not found', then it quits.
I can't verify how it behaves under a native Windows environment because I have
no Windows installed. According to the developer's page the game is Vista
compatible.
I'm not sure it has something to do with the issue, but the Driller.exe is
packed/protected(?) by Molebox Ultra. That is some kind of virtualization which
helps creating portable applications.
Fedora 13
Nvidia 7600 / driver 256.53
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18164
Summary: dlls/iphlpapi/ifenum.c: compiler warnings
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: NetBSD
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wwrite-strings -Wpointer-arith -I/usr/pkg/include -I/usr/include
-I/usr/X11R7/include/freetype2 -I/usr/X11R7/include -O2 -I/usr/pkg/include
-I/usr/include -I/usr/X11R7/include/freetype2 -I/usr/X11R7/include -o
./ifenum.o ./ifenum.c
./ifenum.c: In function 'enumIPAddresses':
./ifenum.c:693: warning: pointer of type 'void *' used in arithmetic
./ifenum.c:693: warning: comparison of distinct pointer types lacks a cast
./ifenum.c: In function 'getIPAddrTable':
./ifenum.c:754: warning: pointer of type 'void *' used in arithmetic
./ifenum.c:754: warning: comparison of distinct pointer types lacks a cast
No patch for this one yet. Won't complain if someone beats me to it ;-).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27497
Summary: Regedit mangles registry keys containing embedded
NULLs
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://www.gog.com/en/gamecard/sacrifice
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=35155)
--> (http://bugs.winehq.org/attachment.cgi?id=35155)
raw file
Noticed this while messing around with Sacrifice
(http://www.gog.com/en/gamecard/sacrifice).
The game stores a few keys with embedded NULLs, apparently all the ones that
store string values (dword/hex values aren't affected).
Looking at the raw registry (system.reg) shows the values fine:
"Graphic detail"=dword:00000000
"IP address"="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"Key repeat delay"=dword:0000000a
"Key repeat start"=dword:00000032
but if I export the key with wine's regedit, it mangles them:
"Graphic detail"=dword:00000000
"IP address"=""Key repeat delay"=dword:0000000a
"Key repeat start"=dword:00000032
notice how a quote goes missing along with the newline. The game really likes
those newlines. If I remove them and rerun the game, then adjust its settings,
it adds them back.
I'll attach a text file with the raw registry, along with what I get when
exporting.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30713
Bug #: 30713
Summary: 64 bit wine installs 64 bit mfc100.dll to syswow64
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Downloading and running
http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D…
(see http://www.microsoft.com/en-us/download/details.aspx?id=13523 )
with WINEARCH=win64 does install mfc100.dll... but into c:\windows\syswow64,
which seems wrong.
This was with wine-1.4. I'll test again with current wine once I figure out
how to build it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31850
Bug #: 31850
Summary: Age of Mythology does not start
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: grishguard-all(a)yahoo.it
Classification: Unclassified
Hi,
after i've entered the serial code, wine gives me an error every time different
from the one before. I here attach a backtrace, hope you resolve. Good work
Ubuntu 12.04
Wine 1.5.14
Ps: the game does not work under Wine 1.4 neither.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28037
Summary: cmd: sharing violation when using >>
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Assuming "bar" does not pre-exist, issuing
if 1==1 echo foo>>bar
in cmd generates a "Sharing violation" message, and "bar" isn't created
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28251
Summary: Shadows do not appear in Mafia II
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peanuthead_069(a)yahoo.com
I'm not sure if it can be fixed via winetricks, but shadow maps don't show up
ingame even if I tweak with the ingame settings. Also, the skydome texture
occasionally flickers when I drive or move around. Nothing really that
show-stopping, as I can play the game just fine, albeit with somewhat lower
framerates.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.