http://bugs.winehq.org/show_bug.cgi?id=27502
Summary: app freezes when WM_KILLFOCUS creates modal dialog
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: efrias(a)syncad.com
Created an attachment (id=35159)
--> (http://bugs.winehq.org/attachment.cgi?id=35159)
simple example which produces the error
When a program brings up a modal dialog box in response to a WM_KILLFOCUS
message, the program will freeze. I've attached a simple test case, all
boilerplate except for:
case WM_KILLFOCUS:
MessageBox(hWnd, _T("Killing Focus"), _T("Note"), MB_OK);
in the main event loop. If you run the program and then give focus to another
application, the messagebox will pop up and then the program will become
unresponsive.
What is happening is:
- x11drv gets a FocusOut event and calls the event handler, which ends up
SendMessage-ing a WM_KILLFOCUS to the program.
- The programs's code creates a modal dialog like the MessageBox above, and
enters the dialog's event loop, which winds up calling GetMessage which calls
MsgWaitForMultipleObjectsEx to get more X11 events.
- X11DRV_MsgWaitForMultipleObjectsEx executes this:
if (data->current_event) mask = 0; /* don't process nested events
*/
where data->current_event is true since we're still handling the FocusOut
event. Since we're not processing nested events, we'll never be able to
process the usual events like keys or mouse events which could exit this nested
event loop.
This type of error occurs in a few places in our application, where a
WM_KILLFOCUS message to an edit box triggers some input validation and displays
an error on failure. This works correctly in the normal case, where the user
tabs out or clicks on another control in the dialog box containing the edit
control -- since everything stays in the same top-level window, there is no
FocusOut event from X11 and the WM_KILLFOCUS is generated internally by wine in
response to, say, a KeyEvent. I think these key or mouse events are just
posted to the windows message queue, and the X11 event handler has already
exited by the time the application gets around to processing the ensuing
WM_KILLFOCUS. But in the case where focus is lost by clicking outside the
dialog containing the edit control, the WM_KILLFOCUS is generated by the
FocusOut handler which is still executing, and we lock up.
I suspect this is related to bug 11595 "Notepad++ freezes if native application
changes a file it has open (dogfood)". My guess is in that case, a FocusIn
event triggers something like a WM_ACTIVATE, in which notepad++ notices a file
is changed and displays a messagebox asking if you want to reload. Since wine
is still processing the FocusIn event, the modal message loop's call to
MsgWaitForMultipleObjectsEx will never process any useful events because it's a
nested event. Our application's built-in text editor has this same problem.
I don't understand the event handling code well enough to propose a solution.
As a test, I allowed nested event processing and it solved the problem without
introducing any obvious errors, but I'm sure that check was in there for a
reason. It's probably better to keep the application code from being executed
from inside the event handler, if that's possible.
Note: this bug was also posted as a message to wine-devel here:
http://www.winehq.org/pipermail/wine-devel/2011-June/090652.html
--
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=32058
Bug #: 32058
Summary: Guild Wars 2 launcher freezes/hangs (unable to launch
game)
Product: Wine
Version: 1.5.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: x.egam.wodahs.x(a)gmail.com
CC: julliard(a)winehq.org
Classification: Unclassified
Once I updated wine to version 1.5.15, the Guild Wars 2 launcher can no longer
launch the game because it just freezes/hangs. This was not an issue in 1.5.14,
and in order to run the game for now I'm using wine 1.5.14 compiled from
source.
In wine 1.5.14, the launcher is black (can't see UI at all, but it's still
functional) unless using the -dx9single flag. Using -dx9single, the background
is black instead of transparent but the UI inside is properly rendered. This
information is important because, before submitting this bug report, I
performed two separate git bisects between 1.5.14 and 1.5.15: one without any
command-line parameters, and one using -dx9single.
Technical details follow:
=======================================================================
1) git bisect for running the game without any parameters:
In the last good commit (8dcbeff760115834656f3f1fc85922e3a9af14d0), the
launcher is still black but it still works. You cannot see the UI but by
blindly logging in, the game does launch. In the first bad commit
(f12c1c6630f0bf842dde9af10da4ab188ff16e94), the behavior is different from the
wine 1.5.15 release and the other commits tested: here, instead of locking up,
the window just disappears. It's still there, but I guess it's fully
transparent. Because this leaves us even more "blind", I considered this "bad"
in the git bisect, yielding the following result:
---
f12c1c6630f0bf842dde9af10da4ab188ff16e94 is the first bad commit
commit f12c1c6630f0bf842dde9af10da4ab188ff16e94
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Sep 26 13:12:17 2012 +0200
winex11: Switch to an ARGB visual for layered windows with per-pixel alpha.
:040000 040000 e9933c28f3e50c52d2cee37a43b06a2f5cb5a497
3870099a31a68a69cd7c022857794700c2343aa9 M dlls
---
If, however, we consider f12c1c6630f0bf842dde9af10da4ab188ff16e94 "good" in the
git bisect, we get:
---
d8247efd5ecb8c4604624eb2bbf47e194ce59e7e is the first bad commit
commit d8247efd5ecb8c4604624eb2bbf47e194ce59e7e
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Sep 27 20:47:08 2012 +0200
winex11: Take the alpha channel into account to compute the region of
layered windows.
:040000 040000 3870099a31a68a69cd7c022857794700c2343aa9
d9ec62b63405f910db90b095145a7910cc124eef M dlls
---
In this case, the launcher does indeed lock up in the first bad commit
(d8247efd5ecb8c4604624eb2bbf47e194ce59e7e).
2) git bisect for running the game using -dx9single:
Using the -dx9single flag, we seem to be able to get to a later commit before
it stops working (but does not work in the 1.5.15 release). In the last good
commit (dbff4f422c943a837f0098e921f831eb4a94ac11), everything seems to be fine
(when using the -dx9single flag) and even the transparency seems to be working.
However, in the first bad commit (6f3b097a203d9ca248732cb45eed462599ca3af1),
things start to lock up. This yields the following git bisect result:
---
6f3b097a203d9ca248732cb45eed462599ca3af1 is the first bad commit
commit 6f3b097a203d9ca248732cb45eed462599ca3af1
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Oct 3 00:09:01 2012 +0200
winex11: Fix a typo in the surface region computation with an alpha
channel.
:040000 040000 fa11ac3c80763b81911ba999d8302029d2c6d147
566c9c06b11f8785c870a1e09ec53d42e13d1524 M dlls
---
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38166
Bug ID: 38166
Summary: Heroes of Might and Magic 5 slowly on some maps.
Product: Wine
Version: 1.7.37
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galdralag(a)bk.ru
Distribution: ---
On some maps especially when many green trees game works very slowly.
This happens on all versions of nvidia driver AFTER 331.89.
331.89 it is last version when game works on maximum video settings.
May be this is bug of nvidia driver (not wine) but I can't test this.
I tested 2 videocards nvidia 760M and 650 ti.
This can be reproduced on ArchLinux, Fedora, OpenSuse and Kubuntu.
If you have problems with reproducing I can attach some maps where it can be
reprocuced
--
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=21987
Summary: Acrobat 7 tryout complains: This Postscript Driver or
Windows Platform (Win9x/Me) not supported
Product: Wine
Version: 1.1.40
Platform: x86
URL: http://www.adobe.com/products/acrobatpro/tryreg.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
When installing the Acrobat 7 trial AcTR7EFG.exe, the installer produces a
dialog:
Devmode
This Postscript Driver or Windows Platform (Win9x/Me) not supported
It doesn't prevent the installer from progressing, but the same thing doesn't
happen on Vista.
--
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=23237
Summary: DirectX SDK Nov 2006 unzip progress bar full of
symbols
Product: Wine
Version: 1.2-rc3
Platform: x86
URL: http://www.microsoft.com/downloads/details.aspx?displa
ylang=en&FamilyID=c72d9f1e-53f3-4747-8490-6801d8e8b4ef
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The winzip self-extractor's progress bar should show the filename
being extracted, but it's in a funny symbol font.
--
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=11661
Summary: Confusing error message when executing application on
noexec fs
Product: Wine
Version: 0.9.55.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
Hi there,
I'm suggesting to make some checks prior to loading and executing applications.
The problem I encountered yesterday was that when trying to start applications
from a filesystem with the noexec parameter enabled the whole app pagefaults.
That was really my mistake because I accidentally changed some lines in the
fstab after changing the encryption engine of my system. I only have the exec
parameter enabled on the games filesystem, all other data filesystem don't have
it enabled.
It would be a good thing to output a somehow more informative error message
when such a configuration is encountered (executing code from noexec fs).
I suggest this because I was quite confused seeing the application to pagefault
that was running two days ago (and I didn't do any package updates in these two
days).
Thanks,
Tobias
--
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=36984
Bug ID: 36984
Summary: Rise of Nations: Extended Edition fails to start due
to missing mfc110.dll
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jaimerave(a)gmail.com
When I try to start Rise of Nations extended edition it just stays in the
screen trying to install VC Redist and at the end it just fails to start. The
message I see in the console is:
err:module:import_dll Loading library mfc110.dll (which is needed by
L"C:\\Program Files\\Steam\\SteamApps\\common\\Rise of Nations\\patriots.exe")
failed (error c000007b).
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Steam\\SteamApps\\common\\Rise of Nations\\patriots.exe" failed, status
c0000135
This is on Ubuntu 14.04 and Wine 1.7.23
--
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.
https://bugs.winehq.org/show_bug.cgi?id=37302
Bug ID: 37302
Summary: chem3d wont start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tedwaltmuf(a)yahoo.com
Created attachment 49614
--> https://bugs.winehq.org/attachment.cgi?id=49614
here is the last run log
when I try and start chem 3d nothing happens the crash report says im missing
some .dll but there all there.
--
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=14025
Summary: Heroes of Might Magic V: camera does not move well
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkstoyanov(a)hotmail.com
Heroes of Might and Magic V (original) and HOMMV: Hammers of Fate, on should be
able to swing the camera left and right by pressing the right mouse button and
move the mouse. It works under windows. In wine (9.58 on, until 1.0 inclusive)
the camera moves only barely, in order to make a 90 degree change of view, I
need to swipe the mouse over the pad several time, in windows I can make 180
with half a pad. The game has no mouse sensitivity option. (camera moves
normally from the keyboard, so the game still plays OK)
--
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=28254
Summary: Problem with activation program pm_fastrack-pmp.exe
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lavir.2010(a)gmail.com
After installing the program pm_fastrack_pmp version 6.0 when trying to enable
execution of the program he presents an information stating that the
program-pm_fastrack pmp.exe found a serious problem and needs to close.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=35824
Bug ID: 35824
Summary: UltraISO 'ISODrive.sys' crashes in entry point (SCM
doesn't start SERVICE_FILE_SYSTEM_DRIVER type services
with winedevice hosting process)
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
found during bug 35755
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+winedevice,+ntoskrnl,+service wine ./uiso9_pe.exe
>>log.txt 2>&1
...
0016:Call KERNEL32.CreateNamedPipeW(00119d70
L"\\\\.\\pipe\\net\\NtControlPipe2",40000003,00000000,00000001,00000100,00000100,00002710,00000000)
ret=7eded4ac
0016:Ret KERNEL32.CreateNamedPipeW() retval=000000d8 ret=7eded4ac
...
0016:Call KERNEL32.ExpandEnvironmentStringsW(0011a038 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00000000,00000000) ret=7edecacd
0016:Ret KERNEL32.ExpandEnvironmentStringsW() retval=0000002f ret=7edecacd
...
0016:Call KERNEL32.ExpandEnvironmentStringsW(0011a038 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00119d70,0000002f) ret=7edecb39
0016:Ret KERNEL32.ExpandEnvironmentStringsW() retval=0000002f ret=7edecb39
0016:Call KERNEL32.CreateProcessW(00000000,00119d70 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00000000,00000000,00000000,00000400,00540000,00000000,0084e4c8,0084e50c)
ret=7edecd84
...
0037:Call KERNEL32.__wine_kernel_init() ret=7bc5a3aa
0016:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7edecd84
...
0037:Starting process L"C:\\Program Files\\UltraISO\\drivers\\ISODrive.sys"
(entryproc=0x253b3f)
0037:trace:seh:raise_exception code=c0000005 flags=0 addr=0x2537a9 ip=002537a9
tid=0037
0037:trace:seh:raise_exception info[0]=00000000
0037:trace:seh:raise_exception info[1]=00000061
0037:trace:seh:raise_exception eax=00000061 ebx=00000000 ecx=0000bb40
edx=7edfefe4 esi=7edd4ce0 edi=00251d4c
0037:trace:seh:raise_exception ebp=0035fe20 esp=0035fd5c cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010246
...
--- snip ---
The random crashes during relay trace are the result from the driver entry
point accessing the second parameter which ought to be 'RegistryPath.
The binary is started as plain win32 process (not loaded in winedevice hosting
process) hence the driver entry point params are not setup.
The kernel driver is a file system driver service, currently not handled with
Wine's service manager.
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms682450%28v=vs.85%…
--- quote ---
dwServiceType [in]
The service type. This parameter can be one of the following values.
Value Meaning
SERVICE_ADAPTER 0x00000004
Reserved.
SERVICE_FILE_SYSTEM_DRIVER 0x00000002
File system driver service.
SERVICE_KERNEL_DRIVER 0x00000001
Driver service.
SERVICE_RECOGNIZER_DRIVER 0x00000008
Reserved.
SERVICE_WIN32_OWN_PROCESS 0x00000010
Service that runs in its own process.
SERVICE_WIN32_SHARE_PROCESS 0x00000020
Service that shares a process with one or more other services. For more
information, see Service Programs.
--- quote ---
Registry export of driver service:
--- snip ---
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\ISODrive]
"DisplayName"="ISO DVD/CD-ROM Device Driver"
"ErrorControl"=dword:00000000
"ImagePath"="C:\\Program Files\\UltraISO\\drivers\\ISODrive.sys"
"ObjectName"="LocalSystem"
"PreshutdownTimeout"=dword:0002bf20
"Start"=dword:00000001
"Type"=dword:00000002
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\ISODrive\Parameters]
"AutoMount"=dword:00000001
"ExcludeDrives"="CDEZ"
--- snip ---
Type -> 0x2 -> SERVICE_FILE_SYSTEM_DRIVER
Source:
http://source.winehq.org/git/wine.git/blob/debd1346b003ae34013a04318e7105f8…
--- snip ---
606 static DWORD service_start_process(struct service_entry *service_entry,
HANDLE *process)
607 {
...
634
ExpandEnvironmentStringsW(service_entry->config.lpBinaryPathName,path,size);
635
636 if (service_entry->config.dwServiceType == SERVICE_KERNEL_DRIVER)
637 {
638 static const WCHAR winedeviceW[] =
{'\\','w','i','n','e','d','e','v','i','c','e','.','e','x','e',' ',0};
...
--- snip ---
$ sha1sum uiso9_pe.exe
77d93c41f45530e58892b276a3fa92c7128b7539 uiso9_pe.exe
$ du -sh uiso9_pe.exe
4.2M uiso9_pe.exe
$ wine --version
wine-1.7.14-185-g5cf20ce
Regards
--
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=17331
Summary: ABBYY ScanTo Office 1.0 Demo: program doesn't run, no
output on console
Product: Wine
Version: 1.1.14
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.strich.b(a)web.de
ABBYY ScanTo Office 1.0 is a GUI application. I got the demo at
http://fr7.abbyy.com/scanto/Scanto01TB.exe
The install works (with lots of fixme's and err's), but when I try to run
ScanToOffice.exe, nothing happens. No log output on console, even with
WINEDBG="+trace,+all"
--
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=32771
Bug #: 32771
Summary: Euro Truck Simulator 2 in-game radio does not work
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmlipman(a)gmail.com
Classification: Unclassified
When I try to play an internet radio station in Euro Truck Simulator 2, the
stream doesn't play. This error is printed in my terminal:
err:ole:CoGetClassObject class {187463a0-5bb7-11d3-acbe-0080c75e246e} not
registered
err:ole:CoGetClassObject no class object {187463a0-5bb7-11d3-acbe-0080c75e246e}
could be created for context 0x1
How to reproduce:
1. Open game
2. Open radio menu
3. Update from internet if list is empty
4. Choose a stream and click play
What I expected:
The stream should start playing
What I got:
The stream does not play
--
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=35061
Bug #: 35061
Summary: Expression: "&get.map.unlocked()==m"
Product: Wine-gecko
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: marvin25(a)telus.net
Classification: Unclassified
When trying to install goldcoin-0.7.1.7-win32-setup app the system indicates it
needs Gecko and it can auto download. I download but then message is:
"Assertion failed" and it shows
C:\deps\boost/interprocess/detail/windows_intermodule_sin?eton.hpp
Line 145
Please note the question mark above is a letter that I wrote down but can't
make it out now.
It also shows Expression: "&get.map.unlocked()==m"
--
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=25764
Summary: Windows Movie Maker breaks uninstaller.exe
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cheery314(a)hotmail.com
Created an attachment (id=32834)
--> (http://bugs.winehq.org/attachment.cgi?id=32834)
Debugger log
After I installed WIndows Movie Maker 2.6, it did not work, so I decided to
remove it. But uninstaller.exe (WINE built in one) now crashes.
--
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=10788
Summary: Windows Movie Maker, install OK... but hangs up after
start
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lmiranda(a)lexplan.cl
CC: lmiranda(a)lexplan.cl
When i start the Windows Movie Maker (after normal install), the software hangs
up.
Then i need to force quit.
The error is:
wine: Call from 0x7b843f50 to unimplemented function
gdiplus.dll.GdipCreateBitmapFromHICON, aborting
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37611
Bug ID: 37611
Summary: Application show "The Application Data folder for
Visual Studio could not be created" message
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lokesh.bhandari(a)enjayworld.com
Distribution: ---
Created attachment 50058
--> https://bugs.winehq.org/attachment.cgi?id=50058
Image of error mesasge
Application show "The Application Data folder for Visual Studio could not be
created" message while running the visual basic 2010 express.
I had done this procedure ---> mkdir -p "$(winepath
"C:\Users\\$USER\\Application Data\Microsoft\VisualStudio\10.0")"
But still show same message that application data folder for visual studio
cound not be created.
My wine version is 1.7.15 and I had tried to install with 1.7.31 but it now
works.
--
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=23601
Summary: Windows Movie Maker 2.6: installs but does not start
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajparag(a)yahoo.co.in
Windows movie maker 2.6 crashes as soon as i click on the launch button. no
error message is displayed.
A suggestion: the new 1.2 RC-7 version supports icon images for .exe files but
it does not support for .msi files. kindly see if that can be added too.
--
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=16971
Summary: Windows Movie Maker needs ole32.dll.StgOpenPropStg
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
Created an attachment (id=18751)
--> (http://bugs.winehq.org/attachment.cgi?id=18751)
crash trace
Movie Maker installs without any problems without any overrides.
After a start it immediately crashes calling unimplemented
ole32.dll.StgOpenPropStg.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36499
Bug ID: 36499
Summary: Small .NET based Direct2D example app needs
ID2D1Factory::CreateHwndRenderTarget implementation
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
since Henri is working on adding Direct2D support to Wine I thought it might be
useful to collect (example) apps to target method stubs.
One can find many Direct2D examples on MSDN - unfortunately they are only
provided in source, to be compiled with Platform/DirectX SDK/Visual Studio.
I found some small precompiled Direct2D "tutorial" apps.
Example here:
http://www.rolandk.de/index.php?option=com_content&view=category&id=15:dire…
Prerequisite: 'winetricks -q dotnet20'.
The example makes use of 'SlimDX' Framework/library which provides a managed
wrapper around Microsoft DirectX.
--- snip ---
$ WINEDEBUG=+tid,+seh,+loaddll wine ./Articles.Tutorials.Direct2D.exe
...
002a:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\d2d1.dll"
at 0x7dcf0000: builtin
002a:fixme:d2d:d2d_factory_init Ignoring factory type and options.
002a:fixme:d2d:d2d_factory_CreateHwndRenderTarget iface 0x1b3720, desc
0x33e390, hwnd_rt_desc 0x33e380, render_target 0x33e368 stub!
....
SlimDX.Direct2D.Direct2DException: E_NOTIMPL: The function called is not
supported at this time (-2147467263)
at SlimDX.Result.Throw[T](Object dataKey, Object dataValue)
at SlimDX.Result.Record[T](Int32 hr, Boolean failed, Object dataKey, Object
dataValue)
at SlimDX.Result.Record[T](Int32 hr, Object dataKey, Object dataValue)
at SlimDX.Direct2D.WindowRenderTarget.Init(Factory factory,
RenderTargetProperties renderTargetProperties, WindowRenderTargetProperties
windowRenderTargetProperties)
at SlimDX.Direct2D.WindowRenderTarget..ctor(Factory factory,
WindowRenderTargetProperties windowRenderTargetProperties)
at Articles.Tutorials.Direct2D.Chapter1.InitializeGraphics()
at Articles.Tutorials.Direct2D.Chapter1.OnHandleCreated(EventArgs e)
at System.Windows.Forms.Control.WmCreate(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.UserControl.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr
wparam, IntPtr lparam)
...
--- snip ---
$ sha1sum Articles.Tutorials.Direct2D.zip
9e29ae58cd2f684c909a0ab714e2097fe497c8c9 Articles.Tutorials.Direct2D.zip
$ du -sh Articles.Tutorials.Direct2D.zip
2.0M Articles.Tutorials.Direct2D.zip
$ wine --version
wine-1.7.19-47-g704d169
Regards
--
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=36860
Bug ID: 36860
Summary: Molot VST stop working in Wine 1.7.20
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xj(a)wp.pl
Created attachment 48954
--> http://bugs.winehq.org/attachment.cgi?id=48954
Backtrace
Molot ( http://vladgsound.wordpress.com/plugins/molot/ ) stop working in Wine
1.7.20. Not working in 1.7.21 as well. In Wine 1.7.19 it works.
--
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=25409
Summary: Windows Live Essentials for XP installer crashes on
attempting to install Photo Gallery
Product: Wine
Version: 1.3.8
Platform: x86-64
URL: http://g.live.com/1rewlive3/en/wlsetup-all.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=32337)
--> (http://bugs.winehq.org/attachment.cgi?id=32337)
Standard log
To see this, you need to run winetricks ie7 and then remove all overrides
except urlmon to work around bug 25408. When prompted to select programs,
uncheck everything except Photo Galley (didn't test any others yet) and
proceed. After a moment, it crashes.
Workaround: leave the native override for mshtml in place too.
--
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=27229
Summary: printf() newline missing with multibyte strings
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: itakingiteasy(a)gmail.com
Created an attachment (id=34797)
--> (http://bugs.winehq.org/attachment.cgi?id=34797)
Code example making case for missing newline in wine printf when multibyte
string is printed
Wine's printf is missing newline when "Multibyte string пукпукпук\n" is
supplied to printf(). Attached code is a test-case reproducing the bug. When
same binary exectued on windows, or same code compiled for- and executed on-
linux - all goes fine. Only when executed under wine newline is missing. It
results in that printed string shares same line with next PS1 prompt here is
screenshot illusrating the problem (FIG1):
(FIG1)
ftp://neverb.net/images/special/screenshot/wine_issue/linux_wine_cmd_exe.png
Note that extra newline in wine cmd.exe is missing.
Here is refference windows screenshot (FIG2) showing where this extra newline
should be:
(FIG2) ftp://neverb.net/images/special/screenshot/wine_issue/native_windows.png
Known possible workarounds for this problem:
* add '\r' before '\n'
* use only ascii (non-multibyte) characters in printing string
* use WCHAR instead of wchar_t
* use wprintf(L"%ls\n"~ instead of printf("%s"~
But all this workarounds are just a sideways. I hope that there is some real
solution.
Thanks.
--
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.