http://bugs.winehq.org/show_bug.cgi?id=18130
Summary: VB APPS: Using edit controls context menu crashes
application.
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martinmnet(a)hotmail.com
Vb applications crash when I click on any selection from edit windows context
menu.
Reason:
menu control is sending WM_COMMAND msg to edit control and shouldnt be.
The VB runtime subclass' the edit control and dies when receiving WM_COMMAND
with the sent wParam.
Solution.
Change menu.c approx line 2561 to check if window is appropriate before sending
WM_COMMAND, i.e. not edit class windows.
Replace edit.c function EDIT_WM_Command
static void EDIT_WM_MenuSelect(EDITSTATE *es, INT code, INT id, HWND control)
{
static INT SelectedItem;
if (id != 0) {
/* Save the currently selected item and return */
SelectedItem = id;
return;
}
switch (SelectedItem) {
case EM_UNDO:
SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
break;
case WM_CUT:
SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
break;
case WM_COPY:
SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
break;
case WM_PASTE:
SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
break;
case WM_CLEAR:
SendMessageW(es->hwndSelf, WM_CLEAR, 0, 0);
break;
case EM_SETSEL:
EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
EDIT_EM_ScrollCaret(es);
break;
default:
ERR("unknown menu item, please report\n");
break;
}
}
and change edit.c line 5195
case WM_COMMAND:
EDIT_WM_Command(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
to
case WM_MENUSELECT:
EDIT_WM_MenuSelect(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
--
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=25980
Summary: Duty Calls: needs msvcm90.dll
Product: Wine
Version: 1.3.12
Platform: x86
URL: http://www.thedutycalls.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
A free download, it's a spoof game of Call of Duty. Interestingly, though, it
wants msvcm90.dll...
austin@aw21 ~/.wine/drive_c/Program Files/Duty Calls/binaries/Win32 $ wine
DutyCalls.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT" (8.0.50727.762)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT" (8.0.50727.762)
err:module:import_dll Library msvcm90.dll (which is needed by L"C:\\Program
Files\\Duty Calls\\binaries\\Win32\\DutyCalls.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Duty Calls\\binaries\\Win32\\DutyCalls.exe" failed, status c0000135
http://download.thedutycalls.com/DutyCallsUS.zip
--
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=28061
Summary: Can't connect to Bancho osu! online services
(multiplayer,scores,chat...)
Product: Wine
Version: 1.3.26
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: theapplehalo(a)gmail.com
When try login, appears the error "A server-side error occured",The login
window stays on connecting...and below is written "Connection Failed. Retrying
in 30s...
The Bancho server workings perfectly (i tried connect to Bancho on VirtualBox
and works)
Auto-update works it means that the internet works in wine.
I have no idea what is the problem.
Any help are appreciated.
--
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=18620
Summary: Braid puzzle problem
Product: Wine
Version: 1.1.22
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriel.gandul22(a)gmail.com
This is a minor bug but it bothers a lot. First of all let me say that this
game runs really good on wine. But the only problem is when you try to complete
the puzzle. In this part the mouse becomes unresponsive and it goes to the
bottom of the screen to the right.
It's just impossible to beat that part. It happens in every puzzle.
--
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=25000
Summary: D-Link EMS requires missed libraries and functions.
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: newgarry(a)mail.ru
Created an attachment (id=31670)
--> (http://bugs.winehq.org/attachment.cgi?id=31670)
Crush log
D-Link EMS 4.32 requires following libraries and utility:
1. wsnmp32.dll
2. mgmtapi.dll
3. snmptrap.exe
After copying this files from installed Windows XP, software launched, but
crushed. On the terminal wine issued error about "Unimplemented function
snmpapi.dll.SnmpSvcAddrToSocket"
After copying file snmpapi.dll from installed Windows XP, software launched
without crushing.
--
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=26311
Summary: Sid Meier's Railroads needs
d3dx9_36.dll.D3DXOptimizeFaces
Product: Wine
Version: 1.3.15
Platform: x86
URL: http://www.gamershell.com/download_16158.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=33538)
--> (http://bugs.winehq.org/attachment.cgi?id=33538)
terminal output
With only built-in d3dx9* dlls used I can get past the intro videos but the
game crashes when I try to start a new game or the tutorial from the menu:
...
wine: Call from 0x7b838163 to unimplemented function
d3dx9_36.dll.D3DXOptimizeFaces, aborting
...
Native d3dx9_36.dll is a workaround.
The demo installs a bunch of native d3dx9* dlls; make sure you're using the
built-in ones.
To prevent the game from crashing early, you might need to modify the following
line in ~/My Games/Sid Meier's Railroads Demo/Settings.ini:
VBlankSynch = 1 ; set it to 0 to avoid the crash/hang.
--
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=12623
Summary: yBook: doesn't display page textures
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://www.spacejock.com/yBook.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laur.olb1(a)gmail.com
Created an attachment (id=12253)
--> (http://bugs.winehq.org/attachment.cgi?id=12253)
Output from running Wine v0.9.59 with yBook v1.5.26
when the latest version of yBook, version 1.5.26, is run, the page textures are
not displayed. Instead, just a black background is shown. Also, if the "hide
desktop" feature is used, the texture is displayed across the whole screen,
however the program is not shown on top of the texture as it is in Windows.
Based on the output, may be a problem in ole32.dll? Attempting to use a native
version of ole32.dll failed, Wine would not even launch the application.
--
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=25140
Summary: 1.3.7 fails to compile with an error in atl
Product: Wine
Version: 1.3.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roman(a)rm.pp.ru
make[1]: Entering directory `/r/hdd/i/tmp/src/wine/git/dlls/atl'
gcc -m32 -c -I. -I. -I../../include -I../../include -D__WINESRC__
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wstrict-prototypes -Wtype-limits -Wwrite-strings
-Wpointer-arith -g -O2 -o registrar.o registrar.c
registrar.c: In function ‘DllGetClassObject’:
registrar.c:747: error: ‘CLSID_Registrar’ undeclared (first use in this
function)
registrar.c:747: error: (Each undeclared identifier is reported only once
registrar.c:747: error: for each function it appears in.)
registrar.c: In function ‘do_register_server’:
registrar.c:796: error: ‘CLSID_Registrar’ undeclared (first use in this
function)
make[1]: *** [registrar.o] Error 1
make[1]: Leaving directory `/r/hdd/i/tmp/src/wine/git/dlls/atl'
make: *** [dlls/atl] Error 2
--
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=22965
Summary: Battlefield Bad Company 2 can run from cd-rom, but not
from iso
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
(This reminds me of bug 22428.)
http://appdb.winehq.org/objectManager.php?sClass=version&iId=19520
says you need -o uid=XXX,unhide. You can install from an .iso
mounted with that (and ro,loop), but you can't start the game, it says
please insert disc. Pointing d: and d:: at a real mounted disc works past it.
A +relay,+file log says
0009:Call KERNEL32.GetVolumeInformationA(02f9d290
"I:\\",02f9cce0,00000400,02f9d22c,02f9d230,02f9d228,02f9cae0,00000200)
ret=023aaed3
...
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
...
0009:Ret KERNEL32.GetVolumeInformationA() retval=00000001 ret=023aaed3
It then does
0009:Call KERNEL32.QueryDosDeviceA(02f9cce0 "I:",02f9cae0,00000200)
ret=023ab4b1
0009:Ret KERNEL32.QueryDosDeviceA() retval=00000019 ret=023ab4b1
0009:Call KERNEL32.CreateFileA(02f9cce0
"\\\\.\\HarddiskVolume2",c0000000,00000003,00000000,00000003,00000000,00000000)
ret=0236c2b2
trace:file:CreateFileW L"\\\\.\\HarddiskVolume2" GENERIC_READ GENERIC_WRITE
FILE_SHARE_READ FILE_SHARE_WRITE creation 3 attributes 0x0
trace:file:RtlDosPathNameToNtPathName_U
(L"\\\\.\\HarddiskVolume2",0x2f9c5c0,(nil),(nil))
trace:file:RtlGetFullPathName_U (L"\\\\.\\HarddiskVolume2" 520 0x2f9c354 (nil))
warn:file:CreateFileW Unable to create file L"\\\\.\\HarddiskVolume2" (status
c0000034)
trace:file:CreateFileW returning 0xffffffff
0009:Ret KERNEL32.CreateFileA() retval=ffffffff ret=0236c2b2
a bunch of times. Looks like it's trying to access the
iso but failing (do we not support \\\\.\\HarddiskVolume2 for
mounted isos?).
--
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=28748
Bug #: 28748
Summary: Two Worlds: missing audio
Product: Wine
Version: 1.3.30
Platform: x86
URL: http://www.fileplanet.com/180119/180000/fileinfo/Two-W
orlds-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winealsa.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 8258a5188cc36563809ac7495e49bc43ae4326e4
Created attachment 36932
--> http://bugs.winehq.org/attachment.cgi?id=36932
+tid,+mmdevapi,+alsa,+winmm,+dsound debug log (uncompressed 4.7 MB)
Two Worlds (released in 2007 by Topware Interactive) is missing audio (sound
effects, speech, music).
Audio worked reliably in the game up until this commit:
8258a5188cc36563809ac7495e49bc43ae4326e4 is the first bad commit
commit 8258a5188cc36563809ac7495e49bc43ae4326e4
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Fri Sep 23 15:03:51 2011 -0500
winealsa.drv: Remove wave, mixer, and dsound driver code.
:040000 040000 e34e9dab6f585755d23f4cad91d4af6dc37b786b
bf2a47c73bcdd75db339177384a4d566c4fa41e6 M dlls
Still present as of wine-1.3.30-145-g7a4349b.
This might be a dupe of bug #28706.
Other bug reports related to this commit: bug #28617, bug #28618, bug #28619.
Can be reproduced in the demo as well. The game requires: physx, d3dx9_36, xact
Fedora 15 x86
Kernel 2.6.40.6-0.fc15.i686.PAE
Alsa 1.0.24
Audio device: nVidia Corporation MCP61 High Definition Audio (rev a2)
Pulseaudio is not running
--
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=21833
Summary: Don't know
Product: Wine
Version: 1.1.39
Platform: x86
URL: http://download.opensuse.org/repositories/Emulators:/W
ine/openSUSE_11.2/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chatovik(a)gmail.com
When I started Steam Counter-Strike 1.6 48 protocol , Counter-Strike 1.6
crashed. If I started Non-Stean Counter-Strike 1.6 47 protocol , it's work and
I can play on many servers, but If I update Non-Steam Counter-Strike 1.6 with
47 protocol on 48 protocol it crashed too. And If I used 47 protocol , I can
use OpenGL grapics mode , but if I use Steam Counter-Strike 1.6 48 protocol it
write was it don't use OpenGL and it use D3D graphics mode
My graphics card: Nvidia 6100 256 Mb
My OS: openSUSE 11.2 and graphics driver version 190.53
My Wine version: 1.1.39 + gecko
I add in attachment , what I see in console when I started Counter Strike 1.6
steam.
--
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=20506
Summary: Diablo 2 Slow down
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
When running Diablo 2 1.12, Opening the map overlay causes a fps drop down to
about 1 fps. This occurs with or without moving your character, Doing an
attack, etc. This affect is enhanced when enemies are being put onto the
screen. Lowering settings doesn't help. This effect is in place until the map
is closed.
--
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=25075
Summary: ESL Wire AntiCheat crashes at startup
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: out.there(a)gmx.net
Created an attachment (id=31795)
--> (http://bugs.winehq.org/attachment.cgi?id=31795)
ConsoleDump_Backtrace
ESL Wire AntiCheat crashes at startup on my Ubuntu Maverick x64.
Logs enclosed.
--
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=26648
Summary: Teach2000: invalid floating point operation error
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeroen.de.meerleer(a)telenet.be
In teach2000 you get an "invalid floating operation" error when do some
actions:
- opening the program
- Hear an empty T2K-file.
There are also some other errors like "access violation" and "program error".
they do not affect the functionality of the program but they are just annoying.
--
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=21178
Summary: FTD.COM Living Virtual Flower: Text scrambled and
transparency not working
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.gazup.com/n70bJ-install_lvf.15.exe-download
-mirrors
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=25428)
--> (http://bugs.winehq.org/attachment.cgi?id=25428)
Wine buggies, Notice the LWA_COLORKEY not supported
In Windows XP mode FTD.com's Living Virtual Flower (a spyware free screen
mate), fails to show transparency and has light blue colored blocks around all
animations. Also the text is unreadable and contains random ASCII instead othe
what it should be saying.
In Windows 98 mode the transparency is not an issue but the text still is.
--
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=24041
Summary: 3ds max 2010 32bit fails at startup
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: EvilTwin1(a)gmx.de
i installed VCRedist 2005 & 2008 plus dotnet via winetricks and got max to show
its spashscreen
but then it does nothing more
--
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=27423
Summary: sln2mak.exe can not start
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. download sln2mak.exe
http://www.codeproject.com/KB/cross-platform/sln2mak.aspx
2. start with wine
$ wine sln2mak.exe
A message shows:
wine: Install Mono for Windows to run .NET 2.0 applications.
3. install mono
$ winetricks -q mono210
4. start sln2mak.exe again:
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 -
assuming all bytes
Unhandled Exception: System.TypeLoadException: A type load exception has
occurred.
sln2mak.exe cannot start.
Should I report a bug to mono?
--
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=22481
Summary: Error when I try to play a saved game in Half life
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ellisllk(a)ellisllk.lautre.net
Created an attachment (id=27538)
--> (http://bugs.winehq.org/attachment.cgi?id=27538)
shell error output
Half life used to run, I even finished it.
I can launch it, but with glitches, I see the menus, they work.
But I can't run a saved game, HL crashes and leaves me with its own screen
definition.
Debian Squeeze
Kernel 2.6.30-2-686
nVidia 6600 GT with the 195.36.15 driver
HL v45/1.1.0.8
--
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=13091
Summary: Input error compiling c++ sources with mingw
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: onido89(a)gmail.com
Hi,
i've searched for this bug but i don't know if it just exist, anyway i wanted
to tell you that i've found a bug while i was compiling a source code in c++
language, that was made like this:
--------------------------------------
#include <stdio.h>
int main()
{
int i=1;
char s[40],c;
while(i!=0)
{
printf("Number-->");
scanf("%d%c",&i,&c);
printf("String->");
gets(s);
}
}
--------------------------------------
When i try to use it in winecmd it doesn't get exactly the inputs method (it
overlay the string method, it seems to ignore it...). Anyway try it for
yourself if you want and i hope it will be fixed for 1.0.
Great work anyway, this is the best emulator that i've ever used ;)
Have a nice day, and keep rollin!
GTOnizuka
--
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=24756
Summary: Form do not have transparent region -
SetLayeredWindowAttributes do not work
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alejandro.lavarello(a)gmail.com
Forms with transparent regions works OK in Windows XP but the
transparency not work in Wine 1.3.2.
Transparency is obtained using the Windows API call to
SetLayeredWindowAttributes.
In more detail, this is the Lazarus code:
------begin of code -------------------------------------------------
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms,
Controls, StdCtrls, Graphics, Dialogs, ExtCtrls, Windows;
const
LWA_COLORKEY = 1;
LWA_ALPHA = 2;
LWA_BOTH = 3;
WS_EX_LAYERED = $80000;
GWL_EXSTYLE = -20;
{Function SetLayeredWindowAttributes Lib "user32" (ByVal hWnd As Long, ByVal
Color As Long, ByVal X As Byte, ByVal alpha As Long) As Boolean }
function SetLayeredWindowAttributes (hWnd:Longint; Color:Longint;
X:Byte; alpha:Longint):bool stdcall; external 'USER32';
{not sure how to alias these functions here ???? alias setwindowlonga!!}
{Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd As
Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long }
Function SetWindowLongA (hWnd:Longint; nIndex:longint;
dwNewLong:longint):longint stdcall; external 'USER32';
{Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd As
Long, ByVal nIndex As Long) As Long }
Function GetWindowLongA ( hWnd:Longint; nIndex:longint):longint stdcall;
external 'user32';
type
{ TForm1 }
TForm1 = class(TForm)
Button1: TButton;
Image1: TImage;
procedure FormCreate(Sender: TObject);
procedure Image1Click(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
{ TForm1 }
procedure SetTranslucent(ThehWnd: Longint; Color: Longint; nTrans: Integer);
var
attrib:longint;
begin
{SetWindowLong and SetLayeredWindowAttributes are API functions, see MSDN
for details }
attrib := GetWindowLongA(ThehWnd, GWL_EXSTYLE);
SetWindowLongA (ThehWnd, GWL_EXSTYLE, attrib Or WS_EX_LAYERED);
{anything with color value color will completely disappear if flag = 1 or
flag = 3 }
SetLayeredWindowAttributes (ThehWnd, Color, nTrans,LWA_COLORKEY);
end;
procedure TForm1.FormCreate(Sender: TObject);
var
transparency:longint;
begin
{the color were going to make transparent the red that the form background
is set to}
transparency:= clLime;
{call the function to do it}
SetTranslucent (form1.Handle, transparency, 0);
end;
------end of code -------------------------------------------------
Tested in Wine 1.3.2 under Puppy Linux 4.3.1 and in
WineXO under Fedora Remix + Sugar in a XO-1.
--
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=20266
Summary: Email alert function fails in StrategyDesk, read
timeout in winsock
Product: Wine
Version: 1.1.30
Platform: PC
URL: http://www.tdameritrade.com/StrategyDesk/SetupStrategy
Desk.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deefster(a)cheerful.com
Created an attachment (id=23920)
--> (http://bugs.winehq.org/attachment.cgi?id=23920)
WINEDEBUG=+all,-relay,-syslevel,-gdi,-heap wine StrategyDesk.exe
Overview:
The program is StrategyDesk, part of the TD Ameritrade brokerage trading
platform software.
The email alerts fail to send in wine, but send ok from native Win2k.
Steps to reproduce:
1. Login to program
2. Select Edit->Preferences
3. Fill in smtp server settings and press 'Test' to send a test email.
Actual results:
Email never sent, but no harmful impact to program.
My interpretation of the debug output is a timeout trying to interpret a
response from the SMTP server, or perhaps it just does not receive one after
the 'EHLO'.
This is not a regression, since it has not worked in past releases going back
to at least 1.0.
Platform:
Linux maestro 2.6.28-gentoo-r5 #1 SMP Fri May 29 00:23:31 CDT 2009 x86_64
Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz GenuineIntel GNU/Linux
--
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=19653
Summary: Purchasing games in steam does not work
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tonglebeak(a)gmail.com
I have no idea when this issue started, as I haven't purchased a steam game for
quite a long time (since last October I believe).
After entering credit card information and clicking on the submit button, the
button's text changes to "working" and animates with dots. However, steam does
not go anywhere else. I have tried this several times. In the end I used
store.steampowered.com in firefox and was able to purchase games just fine.
tldr; buying games in the Steam client does not work, but buying games off of
Steam's website does work.
--
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=28802
Bug #: 28802
Summary: Tunatic interface freezes on startup, the application
is unusable.
Product: Wine
Version: 1.3.30
Platform: x86
URL: http://www.wildbits.com/files/TunaticSetup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 37000
--> http://bugs.winehq.org/attachment.cgi?id=37000
Main window
I've nothing to add to the subject.
There are no messages logged in console beside
"fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels".
--
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=23196
Summary: wine notepad: Resizing reloads the file, making it
excessively slow on long files
Product: Wine
Version: 1.2-rc1
Platform: x86
URL: http://winehq.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Download attachment 28858 from bug 23193 and uncompress it. Open it in wine
notepad.
Resize the window. Everything freezes.
--
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=30003
Bug #: 30003
Summary: wine crash report error 216 on 0000009A
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shahmeer_IT(a)yahoo.com
Classification: Unclassified
Created attachment 39066
--> http://bugs.winehq.org/attachment.cgi?id=39066
can not load the file
one of the .exe is working, but two others give me the error, please review
screen shot.
please help
--
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=17907
Summary: build broken in dlls/ws2_32/tests/sock.c on OpenBSD 4.5
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: download, source, testcase
Severity: blocker
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_REENTRANT -fPIC -Wall
-pipe -fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include
-I/usr/local/include -I/usr/local/include/libpng -o sock.o sock.c
In file included from sock.c:28:
../../../include/ws2tcpip.h:60: error: conflicting types for `socklen_t'
/usr/include/sys/types.h:163: error: previous declaration of `socklen_t'
*** Error code 1
Going for the easy way out and using #define USE_WS_PREFIX just breaks things
worse (see attached).
Looks a bit similar to 16661, so some more includes may help, but filing a bug
for now.
Kai, perhaps you could take a look? If you need SSH access, let me know.
--
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=23918
Summary: ImgBurn finds no devices
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lyrik(a)live.dk
When starting "Imgburn" it cannot find any devices.
The error message is:
"The Program thdudf.sys has encountered a serious problem and has to close
With respect
Jens Erik Bech
lyrik(a)live.dk
--
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=22340
Summary: msvcrt.dll._setjmp unimplemented, needed for ioquake3
64-bit
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: http://www.ioquake3.org/files/angst/ioquake3-1.36_SVN1
778-21.3.x64.exe
OS/Version: Linux
Status: NEW
Keywords: download, source, win64
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
wine: Call from 0x7f27af25f2da to unimplemented function msvcrt.dll._setjmp,
aborting
--
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=25206
Summary: Anarchy Online v18.4, Ingame browser crashes
(Awesomium.dll)
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ao_main(a)gmx.net
Created an attachment (id=32006)
--> (http://bugs.winehq.org/attachment.cgi?id=32006)
output of the wine command
As of patch 18.4 funcom integrated an ingame browser based on the Awesomium.dll
(which itself bases on the chromium framework).
Starting the game (which worked flawless until the patch), the game client
crashes with the following in game error:
----------------------------
Exception code: 80000003 BREAKPOINT
Fault address: 00F8AFF0 01:008A9FF0 C:\Program Files\Anarchy Online - Clean
18.2.2\Awesomium.dll
Registers:
EAX:00000000
EBX:00000010
ECX:079DF434
EDX:00000001
ESI:079DF49C
EDI:079DF4A4
CS:EIP:0017:00F8AFF0
SS:ESP:001F:079DF434 EBP:079DF6B8
DS:001F ES:001F FS:103F GS:0037
Flags:00000246
Fpu control: 0x9001f
Stack: From adr 079DF434
009FAA9C 00000000 02E6A700 02E6B000 02E6A6E0 006F8E41 079DF4A0 079DF49C
079DF6B8 00000000
00000000 0000005F 009FB080 02E49600 02E6A6A0 02E6A700 02E6B000 0000005F
0000005F 9F4B3D04
013446B3 02E6B000 000003E5 00000000 02E6A6A0 00000032 00000004 019FBE58
019FBE1C 02E6A6E0
Call stack:
Address Frame Logical addr Module
00F8AFF0 079DF6B8 0001:008A9FF0 C:\Program Files\Anarchy Online - Clean
18.2.2\Awesomium.dll
7BC64FEA 079DF738 0001:00053FEA C:\windows\system32\ntdll.dll
7BC6BF07 079DFF88 0001:0005AF07 C:\windows\system32\ntdll.dll
GetLogicalAddress failed for 951DF85D
GetLogicalAddress failed for 951DF6E2
<end>
----------------------------
Anarchy Online has been started with a set $WINEPREFIX and "wine Anarchy.exe".
--
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=24107
Summary: MPQEdit: Ctrl-F4 doesn't work
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://zezula.net/download/mpqediten32_beta.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
1. Download MPQEdit and run it.
2. Hit Ctrl-N to create a new MPQ. Name it whatever and hit next using default
options for the next few screens.
3. You should have an empty folder on the left screen. Hit Ctrl-F4.
Ctrl-F4 doesn't do anything. Ctrl-W will work. Both keybinds are bound to the
same action on windows.
--
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=18290
Summary: Curse Client crashes since Curse.com enabled their
premium service
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.curse.com/client/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eiffel56(a)gmail.com
Created an attachment (id=20820)
--> (http://bugs.winehq.org/attachment.cgi?id=20820)
Output of wine with crashing Curse Client right after logging in
The Curse Client crashes since Curse.com enabled their premium
service(http://www.curse.com/articles/curse-en-news/462154.aspx). This is not a
regression in wine since it worked with exactly the same version(1.1.20) a few
hours ago. I also tested 1.1.14 and current git -> exactly the same.
Steps to reproduce:
1. Create a Curse.com account
2. Download and install the Curse Client
3. Create a new folder(e.g "WoW"). Create a folder called "Interface" in it,
and another folder called "Addons" in the Interface folder. Create a new file,
write something in it, and copy it as "Wow.exe" and "Launcher.exe". This is
needed to make the Curse Client think you have World of Warcraft installed. The
Client does also crash if you have a real World of Warcraft installation.
4. Open the Curse Client, click Manage Games->Add Game. Set Label to something,
Type to "World of Warcraft" and Install Path to the fake Wow folder you just
created.
5. Watch it crashing. If you start it up again, you will notice that it'll
crash again right after logging in.
I guess this is caused by that new ad that is shown in the client itself since
the premium service was enabled. It is not shown if you haven't registered at
least one game in Curse Client. It will not crash if you haven't added a game.
I will also attach the output of wine, which strengthens this theory.
--
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=16923
Summary: sscanf function missing hh modifier
Product: Wine
Version: 1.1.10
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pcjc2(a)cam.ac.uk
The sscanf function in the Wine msvcrt runtime doesn't support the "hh"
modifier, as described here:
http://www.opengroup.org/onlinepubs/009695399/functions/sscanf.html
I've not tested or read the source thoroughly enough to see if any other of the
standard modifiers are missing from the Wine implementation.
Since I'm not sure whether Micosoft's msvcrt.dll supports this modifier (and
have no Windows box working to test at the moment), I appreciate this might be
closed "not a bug" if the behaviour is infact compatible with Microsoft's.
I'm developing applications on linux, cross-compiling and using wine to test.
The lack of an hh modifier caused memory corruption and some strange behaviours
in the app. We've changed our code to avoid the problem, but I thought I'd do
due diligence and mention it here in case it turned out to be a problem for you
guys.
Best regards
Peter Clifton
--
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=28881
Bug #: 28881
Summary: CommandLineToArgvW last argument is not equal to NULL
Product: Wine
Version: 1.3.31
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martijn.jstn(a)gmail.com
Classification: Unclassified
Created attachment 37108
--> http://bugs.winehq.org/attachment.cgi?id=37108
Test application
The last argument given by CommandLineToArgvW should be equal to NULL which it
is not. This causes application which use a pointer to increment and check for
NULL to crash.
Should be an easy fix, allocate argv to hold one more pointer and set it to
NULL.
--
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=18284
Summary: Crash durring Microsoft Money 2006 startup
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew(a)mleczko.net
Here you can find full traceback: http://pastebin.com/f5cab2ae1
--
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=22784
Summary: InstallShield: Fails with ole errors
Product: Wine
Version: 1.1.44
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vanoudt(a)gmail.com
Created an attachment (id=28112)
--> (http://bugs.winehq.org/attachment.cgi?id=28112)
ole debug log
When trying to run the Pradis (
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11417 )
InstallSHield installer, it fails with a whole swag of ole errors, popping up a
dialog box saying "1608: Unable to create InstallDriver instance, Return code:
-2147467262"
Manually running regsvr32 ole32 removes some of the err: log entries, but with
no real effect.
A WINEDEBUG=+ole log is attached.
Running on the latest git (wine-1.1.44-143-g2ba53f4) with wine32
--
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=28163
Summary: Runes of Magic cannot update Client!
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dr.strange.0815(a)gmail.com
Created an attachment (id=36082)
--> (http://bugs.winehq.org/attachment.cgi?id=36082)
Error!!!
siehe Photo...
Ich habe keine Ahnung, was da los ist, ich habe RoM installiert, mit Winetricks
und wenn ich den Client starte, lädt dieser die aktuellen patches runter, kann
sie aber nicht installieren, aber es gibt keinen konkreten Hinweis auf den
Fehler!!
(Leute, ich bin hier voll der Noob, also spart euch die Kommentare zu meiner
Unwissenheit. Ich bräuchte lediglich etwas Hilfe!)
--
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=22640
Summary: Microsoft Streets and Trips 2007 hangs at splash
screen
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: davem(a)mich.com
Created an attachment (id=27848)
--> (http://bugs.winehq.org/attachment.cgi?id=27848)
Wine terminal output when running MS Streets & Trips
Microsoft Streets and Trips 2007 hangs at the splash screen. Installs OK but
will not run. Must end the streets.exe process to terminate the application.
--
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=22586
Summary: X3 Terran Conflict (v 2.5) crashes when entering a
jump point
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chrisneilbrown(a)gmail.com
X3TC always crashes when I get to a jump gate with this error
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x525c23
--
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=22566
Summary: fixme:ole:OLEPictureImpl_get_hPal unimplemented for
type 3. Returning 0 palette. causes out of memory
error
Product: Wine
Version: 1.1.42
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fabio.a.miranda(a)gmail.com
VB 6 applications causing:
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\winmm.dll" at
0x7dd40000: builtin
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\MFC42.DLL" at
0x5f400000: native
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\FXTLS532.dll" at
0x3d0000: native
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\fxlbl50g.ocx" at
0x3a0000: native
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\olepro32.dll" at
0x7ddf0000: builtin
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\PICN13.dll" at
0x340000: native
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\fximg50g.ocx" at
0x8460000: native
fixme:ole:OleLoadPictureEx
(0xb4fca4,12662,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f28c),
partially implemented.
fixme:ole:OleLoadPictureEx
(0xb51ccc,129654,1,{00020400-0000-0000-c000-000000000046},x=0,y=0,f=0,0x32f088),
partially implemented.
fixme:ole:OleLoadPictureEx
(0xb51cdc,15544,1,{00020400-0000-0000-c000-000000000046},x=0,y=0,f=0,0x32f088),
partially implemented.
fixme:font:SetMapperFlags (0x5eb0, 0x00000001): stub - harmless
trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\FM20.DLL" at
0x60000000: native
trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\riched20.dll" at
0x7dcf0000: builtin
fixme:ole:OleLoadPictureEx
(0xb5257c,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32e874),
partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0
palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0
palette.
fixme:ole:OleLoadPictureEx
(0xb533d4,2238,1,{00020400-0000-0000-c000-000000000046},x=0,y=0,f=0,0x32e710),
partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0xfad1a88)->(0xfad1b28, 0, (nil)), hacked
stub.
fixme:ole:OLEPictureImpl_Render Not quite correct implementation of rendering
icons...
--
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=22485
Summary: Opening save dialog in Powerpoint 2000 fails on I/O
error 0.
Product: Wine
Version: 1.1.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jan-winehq(a)h-i-s.nl
Created an attachment (id=27549)
--> (http://bugs.winehq.org/attachment.cgi?id=27549)
logging output
Opening the save as dialog responds with:
An unexpected error occurred: I/O error 0.
The +file log is attached
This occurs both on a newly created file, as on saving existing presentations.
--
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=17640
Summary: opening account file crashes quicken
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: idontlikespam(a)free.fr
Created an attachment (id=19824)
--> (http://bugs.winehq.org/attachment.cgi?id=19824)
output of winedbg
wine version 1.1.16 and older versions
quicken version: Home & Business 2007 edition
Can open an empty verion of Quicken, will translate an older data file to new
version. Crashes on opening data file
--
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=22288
Summary: AVRStudio stops during program load phase
Product: WineHQ Bugzilla
Version: 2.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jdoutt(a)whoi.edu
CC: jdoutt(a)whoi.edu
Created an attachment (id=27237)
--> (http://bugs.winehq.org/attachment.cgi?id=27237)
console log from install and run
AVRStudio installed fine on wine wine-1.1.42 compiled srom source.
But it fails when trying to run it.
Incidentally, it does seem to run (with some quirks) when msxml8 is installed
using winetricks (per suggestion from Vitaliy :-) )
--
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=22243
Summary: MapSource does not recognise MassStorage (Garmin)
devices any more), regression against v1.0.1
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ortylp(a)3miasto.net.pl
MapSource (version 6.15.7, the latest that launches without errors) does not
recognise MassStorage devices for data (map) transfer (menu: Transfer/Send to
Device). Drive is recognised in file/open dialog but is not available for map
upload.
Ubuntu lucid (updated on 02.04.2010)
Linux top 2.6.32-19-generic #28-Ubuntu SMP Thu Apr 1 10:39:41 UTC 2010 x86_64
GNU/Linux
hald started manually
Wine 1.1.41 (ubuntu ditribution): does not work
Wine 1.1.41 (vanilla build from source): does not work
Wine 1.0.1 (vanilla build from source): WORKS!
So it is a Bug, not configuration mismatch.
This feature got broken in 1.1.x a few months ago, but I am not sure when
exactly. The first problem which covers the issue I am reporting is missing
(not running) hald. It would be nice to get this feature working independent
of hald.
Please let me know if you need more data or testing
--
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=22345
Summary: AGTerminalV2 fails to connect remote server.
Product: Wine
Version: 1.1.42
Platform: x86
URL: https://rosnorb.ru/Web/win32/setup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: czarkoff(a)gmail.com
Created an attachment (id=27339)
--> (http://bugs.winehq.org/attachment.cgi?id=27339)
wine log (since step 3)
To reproduce:
1. Install MDAC.
2. Download and install the application.
3. Run LC_ALL="ru_RU.utf8" wine "C:\ROSNO\T2\AGTERMINALV2.EXE"
4. Wait for logon window to appear.
5. Type in any username and password, hit Enter.
Expected result - the program window lauched. May be some dialog boxes along
the way.
Actual result - the dialog box stating (in Russian) that no server connection
is active, user not activated; then logon dialog again.
--
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=17089
Summary: SolidWorks 2009 Installation Manager doesn't work
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mail(a)science.su
Created an attachment (id=18923)
--> (http://bugs.winehq.org/attachment.cgi?id=18923)
wine sldim.exe &> /tmp/log.txt
When I run SolidWorks 2009 Installation Manager (sldim.exe, in Windows it runs
automatically by AutoRun) I get an error saying:
"The Installation Manager encountered a problem with the Microsoft Web Browser
control and must be shut down.
Notifiy your local support representative.
If you are running XP, check that you have the latest Service Pack installed.
The latest version Internet Explorer is also recommended."
Only available button is "OK"; after pressing it installation manager exits.
This is with Wine 1.1.13 (from current git) in clean Wine prefix with gecko
installed.
I have attached terminal output. In the log there is messages like this one:
...
0[19ebd0]:
nsNativeModuleLoader::LoadModule("c:\\windows\\gecko\\0.9.0\\wine_gecko\smime3.dll")
- Symbol NSGetModule not found
...
Are they harmless or something really missing?
If you need additional information please tell me.
--
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=22830
Summary: Trading solutions 4 freezes
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.tradingsolutions.com/downloads/eval.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chrisneilbrown(a)gmail.com
Trading solutions 4 freezes at various places
It does not seem to be random
There standard output log doesn't display any new information after it starts
--
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=12630
Summary: Xilinx 4.2i: Registration is impossible
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joris_huizer(a)yahoo.com
For a school project around VHDL, I decided I wanted to try this program,
Xilinx student edition 4.2i (it actually didn't get used before now)
Anyway, a required step is registration.
The program shows three input fields, and it expects four digits per field.
However, the program won't allow to fill in more than three digits.
So I'm stuck, it wants four digits, but it can't get more than three.
(Copy/Pasting doesn't help either)
I'm not too really familiar with Wine code, wouldn't really know how to find
where the problem is really.
This isn't a free program - I got it combined with a book - (and it's a bit
dated too), so I can't give a download URL
--
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=19850
Summary: Anarchy Online crash
Product: Wine
Version: 1.1.28
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ebruyere(a)videotron.ca
Anarchy Online will freeze at starting with a black screen and in window mode
it will crash creating a severe crashing warning.
--
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=22232
Summary: Crash on "Service Area" menu selection
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linards.liepins(a)gmail.com
Created an attachment (id=27139)
--> (http://bugs.winehq.org/attachment.cgi?id=27139)
Error log
Every time I focus / click on "Service Area" tab in Game ( after finishing race
or after loading Carrer from saved Game Slot ), I get crash.
I will try to add wine debugging symbols, but cannot promise - I am too busy in
work for detailed testing and trace debugging session(s).
--
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.