https://bugs.winehq.org/show_bug.cgi?id=45230
Bug ID: 45230
Summary: wine 3.8: gdi32.dll failed to initialize
Product: Wine
Version: 3.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: countstarlight(a)gmail.com
Distribution: ---
Created attachment 61460
--> https://bugs.winehq.org/attachment.cgi?id=61460
wine error log
System: Archlinux
wine: 3.8
Upgrade wine from 3.7 to 3.8, the installed application not work.
The Archlinux aur package repository at
https://github.com/countstarlight/deepin-wine-tim-arch, and log in attachment
After downgrading wine to version 3.7, the application can work, and not see
"gdi32" in log.
--
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=40412
Bug ID: 40412
Summary: When opening the game Stardew Valley, I get an error
message and it never opens
Product: Wine
Version: 1.9.4
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: goodman.jaime(a)gmail.com
Created attachment 54149
--> https://bugs.winehq.org/attachment.cgi?id=54149
backtrace file
I get the message "This program has encountered a serious problem and needs to
close"
Logs attached
--
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=44597
Bug ID: 44597
Summary: Window rendering completely breaks after interacting
with the “Desktop Integration” section of winecfg with
enabled GTK3 themeing
Product: Wine-staging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexander-winehq(a)xmine128.tk
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60584
--> https://bugs.winehq.org/attachment.cgi?id=60584
Changes in HKCU registry
# Background & Steps to reproduce
Window rendering will show bizare artifacts, up to becoming totally useless
(tiny transparent window frames that cannot be interacted with), after
following the below steps:
1. In WINE staging enable GTK3 themeing
2. Open `winecfg` again (things should be themed now)
3. Select the “desktop integration” tab
4. Change the “theme” from “GTK-3” to “(No Theme)” and click “Apply”
5. Do the above two times for noticable rendering issues and crashes
6. Do the above three (or more) times to break *any window rendering in WINE*
(see attachment 2)
# Underlying issue
I'm not exactly sure what `winecfg` happens to do here, but it somehow manages
to calculate and store some completely wrong values for several entries inside
the
HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics
registry key (see attachment 1) that then result in this behaviour.
# Workaround
Open `${WINEPREFIX}/user.reg` in a text editor and delete the entire
HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics
registry key section before launching WINE again.
--
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=31741
Bug #: 31741
Summary: python-2.7.3.amd64.msi fails to install
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: tahoar(a)gmail.com
Classification: Unclassified
I tried installing Python 64-bit 2.7.3 on wine1.5-amd64. The installer loads
but will not progress after the introduction page. When clicking "continue",
the installer does nothing. Clicking "cancel" exits the installer.
--
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=44373
Bug ID: 44373
Summary: cmd's %0 path variables (e.g. %~dp0) don't match those
of Windows (w.r.t. case and quoting)
Product: Wine
Version: 3.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: ryan.prichard(a)gmail.com
Distribution: ---
I'm filing this issue at Fabian Maurer's suggestion, after filing
https://bugs.winehq.org/show_bug.cgi?id=44369.
When %0 starts with a quote character, Windows tends to evaluate the %0 path
variables (%~d0, %~p0, ...) strangely. I think the Wine behavior makes more
sense, but it could also make sense to match Windows bug-for-bug.
Test program (you might have to fix up the C:\bin for your machine):
C:\>mkdir Bin
C:\Bin\ShowArg0.Cmd:
@echo [%0] -------------------- [%~d0] [%~p0] [%~n0] [%~x0]
C:\Bin\RunScript.Cmd
@echo off
setlocal
set PATH=C:\bin;%PATH%
cd \
echo --- Wine and Windows roughly do the same thing.
call showarg0
call SHOWARG0
call showarg0.cmd
call SHOWARG0.CMD
call C:\bin\showarg0
call C:\bin\showarg0.cmd
call c:\bin\showarg0.CMD
call showarg0".cmd"
call showarg0."cmd"
call showarg0.c"md"
call s"ho"warg0.cmd
call s"ho"warg0
call "C:\bin\showarg0.cmd"
call "c:\bin\showarg0.CMD"
echo --- Wine and Windows diverge here.
call "showarg0"
call "SHOWARG0"
call "showarg0.cmd"
call "SHOWARG0.CMD"
call "showarg0".cmd
call "sho"warg0.cmd
call "sho"warg0
call "C":\bin\showarg0.cmd
call "C:"\bin\showarg0.cmd
call "C:\"bin\showarg0.cmd
call "c:\"bin\showarg0.CMD
call "C:\bin\showarg0"
(I edited the script output to align the columns.)
Windows behavior (tested on XP and Win10.0.16299.125):
C:\Bin>RunScript
--- Aside from case, Wine and Windows roughly do the same thing.
--- ... Using c:\bin in PATH
[showarg0] ----------------- [c:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0] ----------------- [c:] [\Bin\] [ShowArg0] [.Cmd]
--- ... Using C:\bin in PATH
[showarg0] ----------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0] ----------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0.cmd] ------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[SHOWARG0.CMD] ------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[C:\bin\showarg0] ---------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[C:\bin\showarg0.cmd] ------ [C:] [\Bin\] [ShowArg0] [.Cmd]
[c:\bin\showarg0.CMD] ------ [c:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0".cmd"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0."cmd"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[showarg0.c"md"] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[s"ho"warg0.cmd] ----------- [C:] [\Bin\] [ShowArg0] [.Cmd]
[s"ho"warg0] --------------- [C:] [\Bin\] [ShowArg0] [.Cmd]
["C:\bin\showarg0.cmd"] ---- [C:] [\Bin\] [ShowArg0] [.Cmd]
["c:\bin\showarg0.CMD"] ---- [c:] [\Bin\] [ShowArg0] [.Cmd]
--- Wine and Windows diverge here.
["showarg0"] --------------- [C:] [\] [showarg0] []
["SHOWARG0"] --------------- [C:] [\] [SHOWARG0] []
["showarg0.cmd"] ----------- [C:] [\] [showarg0] [.cmd]
["SHOWARG0.CMD"] ----------- [C:] [\] [SHOWARG0] [.CMD]
["showarg0".cmd] ----------- [C:] [\] [showarg0"] [.cmd]
["sho"warg0.cmd] ----------- [C:] [\] [sho"warg0] [.cmd]
["sho"warg0] --------------- [C:] [\] [sho"warg0] []
["C":\bin\showarg0.cmd] ---- [C:] [\C":\bin\] [showarg0] [.cmd]
["C:"\bin\showarg0.cmd] ---- [C:] [\"\bin\] [showarg0] [.cmd]
["C:\"bin\showarg0.cmd] ---- [C:] [\"bin\] [showarg0] [.cmd]
["c:\"bin\showarg0.CMD] ---- [c:] [\"bin\] [showarg0] [.CMD]
["C:\bin\showarg0"] -------- [C:] [\Bin\] [showarg0] []
Behavior on wine-3.0-rc6:
C:\Bin>RunScript
--- Aside from case, Wine and Windows roughly do the same thing.
--- ... Using c:\bin in PATH
[showarg0] ----------------- [c:] [\bin\] [showarg0] [.CMD]
[SHOWARG0] ----------------- [c:] [\bin\] [SHOWARG0] [.CMD]
--- ... Using C:\bin in PATH
[showarg0] ----------------- [C:] [\bin\] [showarg0] [.CMD]
[SHOWARG0] ----------------- [C:] [\bin\] [SHOWARG0] [.CMD]
[showarg0.cmd] ------------- [C:] [\bin\] [showarg0] [.cmd]
[SHOWARG0.CMD] ------------- [C:] [\bin\] [SHOWARG0] [.CMD]
[C:\bin\showarg0] ---------- [C:] [\bin\] [showarg0] [.CMD]
[C:\bin\showarg0.cmd] ------ [C:] [\bin\] [showarg0] [.cmd]
[c:\bin\showarg0.CMD] ------ [c:] [\bin\] [showarg0] [.CMD]
[showarg0".cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[showarg0."cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[showarg0.c"md"] ----------- [C:] [\bin\] [showarg0] [.cmd]
[s"ho"warg0.cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
[s"ho"warg0] --------------- [C:] [\bin\] [showarg0] [.CMD]
["C:\bin\showarg0.cmd"] ---- [C:] [\bin\] [showarg0] [.cmd]
["c:\bin\showarg0.CMD"] ---- [c:] [\bin\] [showarg0] [.CMD]
--- Wine and Windows diverge here.
["showarg0"] --------------- [C:] [\bin\] [showarg0] [.CMD]
["SHOWARG0"] --------------- [C:] [\bin\] [SHOWARG0] [.CMD]
["showarg0.cmd"] ----------- [C:] [\bin\] [showarg0] [.cmd]
["SHOWARG0.CMD"] ----------- [C:] [\bin\] [SHOWARG0] [.CMD]
["showarg0".cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
["sho"warg0.cmd] ----------- [C:] [\bin\] [showarg0] [.cmd]
["sho"warg0] --------------- [C:] [\bin\] [showarg0] [.CMD]
["C":\bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["C:"\bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["C:\"bin\showarg0.cmd] ---- [C:] [\bin\] [showarg0] [.cmd]
["c:\"bin\showarg0.CMD] ---- [c:] [\bin\] [showarg0] [.CMD]
["C:\bin\showarg0"] -------- [C:] [\bin\] [showarg0] [.CMD]
I see two differences:
- In most cases, when a path starts with a quote, Windows somehow doesn't
parse the path correctly and/or doesn't find the batch file in the PATH.
- As long as Windows *does* find the batch file, it uses the canonical case
for the path, filename, and extension. It doesn't canonicalize the drive;
instead it uses the drive from the PATH or %0. I also tested a SMB share on XP
and Win10 (\\nAs\nAs and \\NaS\NaS), and Windows didn't canonicalize the server
name or share name. (Maybe it never does.)
--
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=34893
Bug #: 34893
Summary: LaTale Launcher gives WSASocketW Failed to create a
socket of type SOCK_RAW, this requires special
permissions
Product: Wine
Version: 1.7.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iyeru42(a)gmail.com
Classification: Unclassified
tried using the regnum fix:
sudo setcap CAP_NET_RAW=ep /usr/bin/wine
sudo setcap CAP_NET_RAW=ep /usr/bin/wineserver
sudo setcap CAP_NET_RAW=ep LaTaleLauncher.exe
Also applied it to the ogplauncher, Still gave the error.
LaTale also requires GC_DONT_GC=1 before the wine command on the downloader for
the client, since it's pandomediabooster.
Get the client here: http://latale.ogplanet.com/en/download/client.og
Pastebin: http://pastebin.com/FTT71zb1
--
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=45211
Bug ID: 45211
Summary: Steam LTE 4G connection, instability
Product: Wine
Version: 3.0.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shitman71(a)hotmail.com
Distribution: ---
Created attachment 61429
--> https://bugs.winehq.org/attachment.cgi?id=61429
Steam.exe log
With 4G-internet on steam or with wine in general i am having troubles with my
connection, using virtualisation and playing games works flawlessly. Its only
wine making problems.
Starting steam sometimes doesn't work and if it works it only runs a few
minutes and then crashes.
Iam getting the message:
0073:err:ntdll:RtlpWaitForCriticalSection section 0x603375c "?" wait timed out
in thread 0073, blocked by 006e, retrying (60 sec)
My firewall is having no problems, it just sometimes work and sometimes not.
The signal is very good and it is also working on everything else except of
wine.
Iam guessing something is wrong the way wine handles network-connections. So
far i only got this error-message.
--
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=44951
Bug ID: 44951
Summary: Add neon/xenial to your repository
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: roadriverrail(a)gmail.com
Distribution: ---
Created attachment 61058
--> https://bugs.winehq.org/attachment.cgi?id=61058
Error when I add the repository
I use KDE Neon installed on my Ubuntu xenial setup, and Neon requires a
different entry in the repository. Could you please replicate your existing
xenial entries for neon/xenial?
--
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=43436
Bug ID: 43436
Summary: Would it be possible to add Mageia 6 back to the
Install page?
Product: Wine-staging
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: arichter(a)lobo.net
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
I would sure like to see Mageia added back to the wine-staging Install page,
Mageia has been very good about keeping up with the stable releases but staging
is where all the fun is.
I have been successfully building RPMS for both i586 and x86_64 under Mageia 6
and would be glad to submit RPMS or SRPMS for both architectures.
Mageia 6 also now supports mock, which is what I have been using to build the
i586 RPMs under x86_64.
I apologize for submitting this as a bug since it's not a bug but I would
either like to see Mageia back under the Install page or contribute built RPMS
and SRPMS to help make it happen.
I'm a bit new to this RPM building thing but the stuff I've made has worked out
for me, and I've tried to be more active in the winedb.
Thank you for your time and efforts, I only want to help on the Mageia side of
things.
--
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=44735
Bug ID: 44735
Summary: Star of Plants Vs zombies have a 3 minutes delay when
system's net connection is online.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: amie1972(a)163.com
Distribution: ---
net connection results a game starting delay.
--
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=44706
Bug ID: 44706
Summary: disk access terminated (C and Z) - Unreadable /
Unwritable
Product: Wine
Version: 2.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ndallas1983(a)gmail.com
Distribution: ---
I have been trying to run a Game Server from 1996 in Wine (runs fine on my PC).
After a random amount of time (5 - 45 minutes) the program will state:
Cannot write to drive Z:\
Cannot write to drive C:\
It will spam this if I try to save anything. But it will successfully load when
the program loads, but after this happens, the drives disappear from the
application's reach.
To put this into better perspective, imagine you are running Windows and
suddenly your C Drive disappears, but Windows for some reason is still running,
but nothing you do in Windows is being saved. You can't open any files because
your drives do not exist.
I've tried this in NON-ROOT and ROOT, both are the same issue.
I am now looking into using SMB or Network drives because Networking doesn't
seem to be broken.
I also tried debugging to figure out the issue, but WineDebug gives me machine
code, nothing useful I could understand (like a 10 million line list of "Can't
access drive C:\" anywhere.
Hoping someone knows what's up. I am using the Stable version for Ubuntu 17.04.
Thanks,
Nathan
--
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=15864
Summary: window size has reversed width and height
Product: Wine
Version: 1.1.7
Platform: Other
URL: http://jeffz.name/dvt-fc2.exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=17001)
--> (http://bugs.winehq.org/attachment.cgi?id=17001)
Windows-vs-Wine
This small program seems to have its width and height mixed up under Wine. The
attached screenshot shows the program running under windows (top) and under
Wine (below)
--
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=41635
Bug ID: 41635
Summary: The Banner Saga 2 (adobe air) - poor performance on
plain Wine, flickering on Wine-staging
Product: Wine
Version: 1.9.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: donanykey(a)gmail.com
Distribution: ---
Although from the first glance the Banner Saga 2 (based on the Adobe Air) is
fully functional with plain Wine, the performance is very poor and the
framerate is bad (literally `slide show`).
I wouldn't have fired this bug, if not the following reasons:
1. The performance on wine-staging is much better, almost close to native, but
there is another problem - picture flickering
2. The first game in series has native linux support, but with known problems
(during battles after some time of playing the framerate drops dramatically and
hardly recovers). Due to the small fraction of linux gamers and, I believe, due
to the porting efforts and problems the developer announced that they have no
plans to support linux in the 2 & 3 games in the foreseeable future. I think it
would be a good opportunity for CodeWeavers to reach those guys and propose
porting services (they are quite opened guys, their CTO shares details over
porting vendor selection, problems and etc - easily googled). One of the major
problems - Adobe stopped support of Air on Linux
Nevertheless, I would be happy to provide any additional info, full log is not
useful I suppose, as soon as game runs without errors and can't say what
patch(s) in wine-staging makes it run faster
--
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=42903
Bug ID: 42903
Summary: Wine Internet Explorer - JavaScript does not work
Product: Wine
Version: 2.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: arnfranke(a)yahoo.com
Distribution: ---
Created attachment 58044
--> https://bugs.winehq.org/attachment.cgi?id=58044
Full terminal log from "wine iexplore.exe"
JavaScript doesn't appear to work in Wine Internet Explorer.
Steps to reproduce:
1. Open C:\Program Files\Internet Explorer\iexplore.exe or C:\Program
Files\Internet Explorer\iexplore.exe with Wine.
2. Go to a site that uses JavaScript, in my case I'm testing Reddit.
3. Try clicking on a JavaScript element, such as Reddit's "reply" button.
Expected behavior: The buttons do what they're supposed to do.
Observed behavior: Nothing happens.
--
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=38815
Bug ID: 38815
Summary: PokerStars challenges and rankings windows don't work
Product: Wine
Version: 1.7.38
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gonssal(a)gmail.com
Distribution: ---
PokerStars challenges and rankings windows don't work, they just show a black
window.
PokerStars version 7. The links to challenges and rankings are in the main
window's right sidebar.
This is the console output from starting PokerStars, logging in an trying to
open the challenges window:
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ver:GetCurrentPackageId (0x33d020 (nil)): stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:shell:SetCurrentProcessExplicitAppUserModelID L"PokerStars.Es.Gui": stub
fixme:resource:GetGuiResources (0xffffffff,1): stub
fixme:heap:RtlSetHeapInformation 0x240000 0 0x23fcd0 4 stub
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:GetThreadPreferredUILanguages 56, 0x33ecb0, (nil) 0x33ecb4
fixme:winsock:WSALookupServiceBeginW (0x33ed04 0x00000ff0 0x33ed4c) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x33ebe8, overlapped 0x98bd68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x10494,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10494,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:file:FindFirstFileExW flags not implemented 0x00000002
fixme:win:EnumDisplayDevicesW ((null),0,0x33e738,0x00000000), stub!
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1a4e124 (nil)): stub
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:ver:GetCurrentPackageId (0x1c5e9d8 (nil)): stub
fixme:dwmapi:DwmIsCompositionEnabled 0x33e3d4
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x104a4 0x00000000
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:d3d9:D3DPERF_GetStatus (void) : stub
err:winediag:IcmpCreateFile Failed to use ICMP (network ping), this requires
special permissions.
fixme:win:EnumDisplayDevicesW ((null),0,0x33dbf8,0x00000000), stub!
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(0x1c3650)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0x33eb04)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ntdll:NtIsProcessInJob stub: 0x20c (nil)
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:ntdll:NtIsProcessInJob stub: 0x214 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x21c (nil)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ntdll:NtIsProcessInJob stub: 0x1fc (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x224 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x22c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x234 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x244 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:dwmapi:DwmGetCompositionTimingInfo ((nil) 0x33d0d4)
fixme:d3d:state_lastpixel Last Pixel Drawing Disabled, not handled yet
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:gdi:GdiInitializeLanguagePack stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x12fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x13fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x11fe9d8 (nil)): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x140 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x148 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x150 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x158 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x160 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x168 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x184 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x18c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:process:GetSystemFirmwareTable (1381190978 0 (nil) 0):stub
fixme:wbemprox:client_security_SetBlanket 0x7df4067c, 0xbfbb8f8, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7df4067c
fixme:process:GetSystemFirmwareTable (1381190978 0 (nil) 0):stub
fixme:wbemprox:client_security_SetBlanket 0x7df4067c, 0xbfbb8c8, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7df4067c
fixme:netapi32:NetUserGetInfo Level 2 is not implemented
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:GetThreadPreferredUILanguages 56, 0x33ecb0, (nil) 0x33ecb4
fixme:winsock:WSALookupServiceBeginW (0x33ed04 0x00000ff0 0x33ed4c) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x33ebe8, overlapped 0x98dd68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x104ba,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x104ba,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:file:FindFirstFileExW flags not implemented 0x00000002
fixme:win:EnumDisplayDevicesW ((null),0,0x33e738,0x00000000), stub!
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1a4e124 (nil)): stub
fixme:ver:GetCurrentPackageId (0x1b5e9d8 (nil)): stub
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:dwmapi:DwmIsCompositionEnabled 0x33e3d4
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x104ce 0x00000000
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33dbf8,0x00000000), stub!
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(0x1c4628)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0x33eb04)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ntdll:NtIsProcessInJob stub: 0x204 (nil)
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:ntdll:NtIsProcessInJob stub: 0x214 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x21c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x220 (nil)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ntdll:NtIsProcessInJob stub: 0x224 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x22c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x234 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:dwmapi:DwmGetCompositionTimingInfo ((nil) 0x33d0d4)
fixme:d3d:state_lastpixel Last Pixel Drawing Disabled, not handled yet
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:gdi:GdiInitializeLanguagePack stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x13fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x12fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x11fe9d8 (nil)): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x140 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x148 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x150 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x158 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x160 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:system:SystemParametersInfoW Unknown action: 116
--
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=23327
Summary: Caesar 3: autorun image missing
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
I´m using Ubuntu Lucid Lynx with nvidia 9500 GT video card, my caesar 3 is br
version, but i do not know if this matters.
Will try to post some kind of log later.
--
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=40976
Bug ID: 40976
Summary: Need For Speed: Most Wanted (2012) needs
d3d11_device_CreateTexture1D implementation
Product: Wine
Version: 1.9.14
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
fixme:d3d11:d3d11_device_CreateTexture1D iface 0x13bc88, desc 0x30b314, data
(nil), texture 0x30b344 stub!
wine-1.9.14-112-gfec0b69
--
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=30141
Bug #: 30141
Summary: 1848 (strategy game) becomes unresponsive after the
first mouse click
Product: Wine
Version: 1.4
Platform: x86
URL: http://www.gamershell.com/download_17042.shtml
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com
Classification: Unclassified
Regression SHA1: 94c0da184e18252ca2df7f9f462e9a4df9c5f2df
1848 is a freeware, historical strategy game taking place during the Hungarian
Independence War of 1848/49. The next game from the developer is also affected
by this bug (For the Glory!).
The problem: a new game can be started from the menus, but as soon as I click
with the mouse on the game screen, the game becomes unresponsive: music and
animations keep playing but the game no longer responds to mouse or keyboard.
Terminal output isn't too informative:
>fixme:win:EnumDisplayDevicesW ((null),0,0x32ec20,0x00000000), stub!
>fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to 16
>fixme:ddraw:ddraw7_WaitForVerticalBlank iface 0x14dc08, flags 0x1, event (nil) stub!
The problem appeared in Wine-1.3.34 and is still present as of
wine-1.4-78-g94953f1.
94c0da184e18252ca2df7f9f462e9a4df9c5f2df is the first bad commit
commit 94c0da184e18252ca2df7f9f462e9a4df9c5f2df
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Thu Dec 1 07:31:41 2011 +0100
wined3d: Create a PBO in surface_load_location() even if SFLAG_INSYSMEM is
already set.
In the longer term, sysmem and pbo should be separate resource locations.
:040000 040000 0ea129726096c1508557eacfc8272cf884f0c61b
4e1bfdfeccfc95e0b700f75d6841dbb7cc1889da M dlls
Other bugs related to this commit: bug #29287, bug #29613.
Although the commit can be reverted cleanly on current git, I noticed that
- reverting on 1.4 doesn't fix the problem for some reason
- reverting on 1.3.37 does fixes the problem
Steps to reproduce the problem:
1. install the game as usual.
2. start the game with 1848.exe
3. in the main menu choose <Single Player>, then select the Tutorial Campaign
and click on the <Start> button, located in the lower right corner of the
screen.
4. close the Events window and left click anywhere on the main game screen (not
on the minimap). The game no longer responds to mouse or keyboard input.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
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=45095
Bug ID: 45095
Summary: BattlEye Issues with
fixme:system:SystemParametersInfoW and ntdll stub
(Planetside 2)
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: games(a)mail.timekill.org
Distribution: ---
Created attachment 61261
--> https://bugs.winehq.org/attachment.cgi?id=61261
backtrace info
Planetside 2 (and probably other games) still does not make it through
starting BattlEye. The work on wine 3.6 and 3.7 have helped, however it's not
quite working yet.
After starting the game from DayBreak Games / Planetside 2's Launcher:
-The "BattlEye Launcher" window pops up with "Starting BattlEye Service"
inside.
-There is a pause
-The console spits out 8 lines:
0042:fixme:system:SystemParametersInfoW Unknown action: 116
003a:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
003a:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
003a:fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x8794094): stub
002e:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
002e:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
002e:fixme:ntdll:EtwEventUnregister (0) stub.
002e:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
002e:fixme:ntdll:EtwEventUnregister (0) stub.
-The process dies and the "BattlEye Launcher" window remains on the screen
until closed by the window manager.
The hex number in fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x********)
differs each time
I attempted to take a backtrace of 'PlanetSide2_x64_BE.exe' and
'BEService.exe'. The former is attached, the latter caused winedbg to hang
when I ran "attach 0x********" in winedbg.
This may be related to Bug 43582
(https://bugs.winehq.org/show_bug.cgi?id=43582)
This may be related to Bug 44910
(https://bugs.winehq.org/show_bug.cgi?id=44910)
--
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=44305
Bug ID: 44305
Summary: GetSystemFirmwareTable() API returns empty SMBIOS
records on Ubuntu 16.04 x86_64
Product: Wine
Version: 2.0.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: gaurav.pruthi88(a)gmail.com
Distribution: ---
We are using GetSystemFirmwareTable() API to retrieve SMBIOS data. After
invocation, function returns empty SMBIOSTableData[], a member of struct
RawSMBIOSData. Also, 'Length' field of the aforementioned struct returns a
negative value in wine 2.0.3
More info regarding this API can be found at:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms724379(v=vs.85).…
Do respond if more info is required.
--
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=31829
Bug #: 31829
Summary: Ad Astra fails to start when music enabled
Product: Wine
Version: 1.5.1
Platform: x86
URL: http://www.gamedev.net/page/community/gds/view/_/actio
n/ad-astra-r174
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 5e522a1d1c7c84a4c89f67770ff391f05662d35b
Created attachment 41888
--> http://bugs.winehq.org/attachment.cgi?id=41888
terminal output
Ad Astra is a freeware space exploration game. On startup the game shows a
black screen for a moment, then it quits (without a crash dialog/backtrace).
Steps to reproduce the problem:
1. unpack the archive and start the game with AdAstraDX9.exe.
According to my testing, the problem appeared in Wine 1.5.1, and is still
present in 1.5.14.
The result of the regression test:
5e522a1d1c7c84a4c89f67770ff391f05662d35b is the first bad commit
commit 5e522a1d1c7c84a4c89f67770ff391f05662d35b
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Mar 19 07:35:17 2012 -0500
dmloader: Don't claim partial success when loading fails.
:040000 040000 29041b7005a7e7e930ca59d3ca0383b696182b6a
0e98b8be7dce48a9b624f758fc36a6e401e335c5 M dlls
Reverting the patch on 1.5.14 fixes the startup problem.
The game uses midi files for background music, some midi files are located in
the /midi directory.
Running Timidity before starting the game doesn't help.
As a workaround for the startup problem, either remove those midi files or
install native directmusic via winetricks.
Let me know if you need a debug log (+dmloader,...)
--
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=39566
Bug ID: 39566
Summary: Missing player model on Raiden III
Product: Wine
Version: 1.7.54
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)iooioio.orion.uberspace.de
Distribution: ---
Created attachment 52715
--> https://bugs.winehq.org/attachment.cgi?id=52715
Console output
Most of the game seems to render fine but occasionally models lose their
textures and become white and most obviously the player's ship is completely
invisible (see screenshot).
I realise this may be a driver issue so would appreciate feedback from others.
I've tried StrictDrawOrdering but that didn't help.
I'm running Raiden III Digital Edition (2.0.0.3) from GOG.com.
My specs:
Wine 1.7.54 (64bit)
Linux Mint 17.2 (3.19.0-26-generic)
Proprietary nVIDIA drivers (352.55)
GeForce GTX 960
I'm attaching a screenshot and a sanitised log. The original log file was
almost 200k lines long after roughly 15 seconds of gameplay!
--
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=25229
Summary: rejected test cases never go back to queue
Product: WineHQ Apps Database
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: virtuousfox(a)gmail.com
when test case is rejected instead of outright deleted it does not go back into
queue to be reviewed even after being edited by submitter.
this issue was discussed sometime year or two ago but apparently never was
fixed.
example here: user have submitted result and it got rejected for better
detailing, it was edited by submiter and mail notification was sent to me.
"test result" is
http://appdb.winehq.org/objectManager.php?sClass=version&iId=4976&iTestingI…
but it not anywhere in my queue list. i want to reject it second time anyway
since submitter didn't bothered to read damn notes and howtos at app test page
again or look at other, proper submits but i can't even do that now since it's
not in queue and i can't do anything with it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38515
Bug ID: 38515
Summary: The Forest: Pixels are flickering on some textures
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
On some textures (for example the arms on climbing a rope) I'm seeing that
several pixels over the complete texture are flickering.
--
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.