https://bugs.winehq.org/show_bug.cgi?id=52381
Bug ID: 52381
Summary: wineg++: Compile error in tom.h
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: sacrom(a)gmail.com
Distribution: ---
Compiling an application based in winelib (copiled with wineg++), since Wine
6.19 causes a compile error at header "tom.h".
I've narrowed and minified the source file to generate the error.
-----------------------------
[sc@generic_linux1_64]/sc/tmp/wine$ cat compile_error.c
#include <windows.h>
#include <tom.h>
int main()
{ return 0; }
[sc@generic_linux1_64]/sc/tmp/wine$ wine --version
wine-6.19
[sc@generic_linux1_64]/sc/tmp/wine$ winegcc compile_error.c
[sc@generic_linux1_64]/sc/tmp/wine$ wineg++ compile_error.c
In file included from compile_error.c:2:
/opt/wine-devel/include/wine/windows/tom.h:1889:22: error: invalid use of
incomplete type ‘struct ITextSelection’
1889 | ITextRange2 : public ITextSelection
| ^~~~~~~~~~~~~~
In file included from compile_error.c:2:
/opt/wine-devel/include/wine/windows/tom.h:79:19: note: forward declaration of
‘struct ITextSelection’
79 | typedef interface ITextSelection ITextSelection;
| ^~~~~~~~~~~~~~
winegcc: /usr/bin/g++ failed
-----------------------------
While in Wine 6.18:
[sc@generic_linux1_64]/sc/tmp/wine$ wine --version
wine-6.18
[sc@generic_linux1_64]/sc/tmp/wine$ winegcc compile_error.c
[sc@generic_linux1_64]/sc/tmp/wine$ wineg++ compile_error.c
[sc@generic_linux1_64]/sc/tmp/wine$ cat compile_error.c
#include <windows.h>
#include <tom.h>
int main()
{ return 0; }
-----------------------------
Probably the cause lies in this commit:
https://source.winehq.org/git/wine.git/commit/5a8dcb062793fbb68997e1b54ebc2…
--
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=43650
Bug ID: 43650
Summary: nolf2 game error on install
Product: Wine
Version: 2.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bronsonmathews(a)gmail.com
Distribution: ---
I get the following when launching the installer for NOLF2. Can grab the game
here: http://nolfrevival.tk/
fixme:winediag:start_process Wine Staging 2.15 is a testing version containing
experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug
reports on winehq.org.
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:ole:create_server class {91814ec0-b5f0-11d2-80b9-00104b1f6cea} not
registered
err:ole:CoGetClassObject no class object {91814ec0-b5f0-11d2-80b9-00104b1f6cea}
could be created for context 0x4
--
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=12030
Summary: MozyHome: backup service does not work
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.mozy.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: raccoonone(a)procyongames.com
Created an attachment (id=11369)
--> (http://bugs.winehq.org/attachment.cgi?id=11369)
console output
trying to start the MozyHome backup service (mozybackup.exe) via "wine net
start 'mozybackup'" causes the process to start. But after a couple of seconds
it exits without an error message.
I'm not sure what is causing it to close, but most of the fixme's show up right
as mozybackup disappears from the process list.
I've attached a log of the console output.
Any ideas? I was going to start by looking into implementing
WTSEnumerateSessionsW, WTSFreeMemory, ParseStringSidToSid, and
WSALookupServiceBeginW
--
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=52108
Bug ID: 52108
Summary: user32:monitor breaks user32:win on Win10 1809
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Created attachment 71132
--> https://bugs.winehq.org/attachment.cgi?id=71132
Windows 10 1809 "blurry popup"
On 2021-09-01 user32:monitor started breaking user32:win on Windows 10 1809:
win.c:3322: Test failed: GetActiveWindow() = 00220510
win.c:3325: Test failed: GetFocus() = 00000000
win.c:3337: Test failed: GetFocus() = 00000000
win.c:3340: Test failed: GetFocus() = 00000000
win.c:3343: Test failed: GetFocus() = 00000000
win.c:3346: Test failed: GetActiveWindow() = 00220510
win.c:3350: Test failed: GetFocus() = 00000000
win.c:3353: Test failed: GetFocus() = 00000000
win.c:4047: Test failed: hwnd 004A050A/003600CA message 0737
win.c:4052: Test failed: hwnd 003600CA/003600CA message 0202
win.c:4057: Test failed: hwnd 003600CA/003600CA message 0203
win.c:4061: Test failed: message 0202 available
https://test.winehq.org/data/patterns.html#user32:win
A bisect shows that the failures started with this commit:
commit 2d51077a22b7d8faa9587d02a84181f58d1203aa
Author: Zhiyi Zhang <zzhang(a)codeweavers.com>
AuthorDate: Wed Sep 1 14:37:21 2021 +0800
user32/tests: Add DisplayConfigSetDeviceInfo() tests.
Test that DisplayConfigSetDeviceInfo() can be used for getting and setting
display DPI.
Signed-off-by: Zhiyi Zhang <zzhang(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
What happens is that the new display tests cause Windows 10 1809 to display a
notification that the "apps might be blurry". This notification stays up after
user32:monitor completes and then steals the focus from the user32:win tests
and causes them to fail.
So there's not really anything wrong in either user32:monitor nor user32:win
but this still causes test failures :-(
--
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=51423
Bug ID: 51423
Summary: WeChat cannot sent big picture with
Wine-devel-6.12(amd64)
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kuletco(a)qq.com
Distribution: ---
Created attachment 70275
--> https://bugs.winehq.org/attachment.cgi?id=70275
full log of WeChat to sent a big picture
WeChat Cannot sent big picture with Wine-devel-6.12(amd64) but
Wine-devel-6.9(amd64) work fine
Wine Version: wine-devel 6.12~focal-1 amd64
Kernel Info: uname -a
Linux kuletco-OptiPlex-7060 5.11.0-22-generic #23~20.04.1-Ubuntu SMP Thu Jun 17
12:51:00 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
System Info: lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 20.04.2 LTS
Release: 20.04
Codename: focal
Capture Picture with 'Flameshot v0.9.0 compiled with Qt 5.12.8' and copy to
clipboard, then paste to edit box of WeChat, then click 'Send' button.
Run WeChat Command: (I Managed Wine with Q4Wine)
/usr/bin/env WINE='/opt/wine-devel/bin/wine64' WINEPREFIX='/home/kuletco/.wine'
WINESERVER='/opt/wine-devel/bin/wineserver'
WINELOADER='/opt/wine-devel/bin/wine64'
WINEDLLPATH='/opt/wine-devel/lib64/wine' WINEARCH='win64' LANG='zh_CN.UTF-8'
/bin/sh -c "cd '/home/kuletco/.Storage/Applications/Tencent/WeChat/' &&
'/opt/wine-devel/bin/wine64' 'WeChat.exe' 2>&1"
Attach Files:
WeChat-Failed.log is the full log of WeChat to sent a big picture.
WeChat-Success.log is the key log of WeChat to sent a small picture.
WeChat-Faild-Pic.png is dump from WeChat that sent failed.
WeChat-Success-Pic.png is dump from WeChat that sent success.
Bug Description:
Send a big picture failed, some small picture may be success. I think WeChat
compress the size of the big picture but it faild.
--
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=9805
Summary: fixme:ole:OaBuildVersion16 Version value not known yet
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Created an attachment (id=8254)
--> (http://bugs.winehq.org/attachment.cgi?id=8254)
WINEDEBUG=+relay,+msgbox
With an old program from http://www.derouck.com/cdromgps/f/index.asp
i have a messagebox with :
"Wrong version of operating system; requires Windows NT 3.51 (build 1057 or
above)"
I have tried with all different windows version in winecfg.
--
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=43494
Bug ID: 43494
Summary: Microsoft Flight Simulator 2000 crashes when losing
focus during flight
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Created attachment 58873
--> https://bugs.winehq.org/attachment.cgi?id=58873
log of the crash using +loaddll,fixme+all,warn+all,err+all
During a flight, on Windows, if the game loses the focus, it is paused
automatically (equivalent to pressing P). Under wine, the game crashes.
The game behaves normally when a menu is opened (in this case, everything is
paused, and the game doesn't crash).
If I select in winecfg "emulate a virtual desktop", the game doesn't crash
anymore because of this issue.
I tested this behaviour on ubuntu with both unity and gnome3, under wine 1.6,
wine stable (2.0.2) and wine-devel (2.16). The results were all the same.
I attached the result of the following commands:
export WINEDEBUG=+loaddll,fixme+all,warn+all,err+all
wine start 'C:\Program Files\Microsoft Games\FS2000\FS2000.EXE' &>log.txt
Then I started a flight and clicked outside of the game window (so that the
crash occurs).
--
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=52395
Bug ID: 52395
Summary: Microsoft flight 2000 crashes in lesson
Product: Wine
Version: 7.0-rc5
Hardware: x86-64
URL: https://www.myabandonware.com/game/microsoft-flight-si
mulator-2000-professional-edition-g3s
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvfw32
Assignee: wine-bugs(a)winehq.org
Reporter: jeremielapuree(a)yahoo.fr
Distribution: Ubuntu
Created attachment 71633
--> https://bugs.winehq.org/attachment.cgi?id=71633
console output
MFS 2002 crashes when you a flying lesson.
--
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=43496
Bug ID: 43496
Summary: Microsoft Flight Simulator 2000 : game pauses when
tooltips are shown
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Everytime one hovers the mouse on an instrument, then move the mouse out to let
the tooltip disappear, the game pauses. The game normally should pause only
when the game window loses focus (but when the whole window lose focus the game
crashes, see bug #43494).
This happens on all versions of wine from 1.6 to the latest devel (2.16).
There is a workaround for this (as in #43494): enable virtual desktop on
winecfg.
Everytime I reproduce this behaviour (show tooltip, move the mouse, the tooltip
disappears => game paused) this shows up in the terminal:
warn:dsound:IDirectSound8Impl_SetCooperativeLevel level=DSSCL_PRIORITY not
fully supported
warn:dsound:DSOUND_PerformMix Probable buffer underrun
--
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.