https://bugs.winehq.org/show_bug.cgi?id=37488
Bug ID: 37488
Summary: Quicken 2014 - NtAreMappedFilesTheSame fails to
compare builtin dlls with stub dlls
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: michael(a)fds-team.de
Distribution: ---
Created attachment 49879
--> https://bugs.winehq.org/attachment.cgi?id=49879
test program
Hi,
Quicken 2014 loads the stub ntdll from C:\Windows\System32 as file mapping and
tries to compare it with all loaded file mappings using
NtAreMappedFilesTheSame. Wine does not support comparing a mapped stub dll with
the loaded dll, so that the function returns STATUS_NOT_SAME_DEVICE every time,
causing Quicken 2014 to enter an endless loop.
Since this issue is currently blocked by bug 37487 and bug 37449, I wrote a
small C snippet which can be compiled with mingw that demonstrates the issue.
On Windows the program prints "Same file!" while on Wine it prints "Different
file!".
Regards,
Michael
--
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=45708
Bug ID: 45708
Summary: d2d1.dll requires some export functions to run
"Simple2D" samples.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: svyatpro(a)gmail.com
Distribution: ---
Most of samples in "Simple2D" fails with unresolved exports in d2d1.dll.
Samples download link:
http://files.djkaty.com/software/Simple2D/
--
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=45709
Bug ID: 45709
Summary: djkaty.com Simple2D demos v1.13 need support for
IWICImagingFactory2, CLSID
'{317d06e8-5f24-433d-bdf7-79ce68d8abc2}'
Product: Wine
Version: 3.14
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
split off from bug 45708
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files (x86)/DJKaty.com/Simple2D/examples
$ WINEDEBUG=+seh,+relay,+windowscodecs wine ./BitmapBrushDemo.exe >>log.txt
2>&1
...
002e:Ret dwrite.DWriteCreateFactory() retval=00000000 ret=004057a3
002e:Call ole32.CoCreateInstance(00426c70,00000000,00000001,004262c8,0033fd60)
ret=004057ee
002e:Call ntdll.RtlInitUnicodeString(0033f504,7dd601e0
L"\\Registry\\Machine\\Software\\Classes") ret=7dc93c71
002e:Ret ntdll.RtlInitUnicodeString() retval=0033f504 ret=7dc93c71
---
002e:Call ntdll.RtlInitUnicodeString(0033f5a0,0033f5f2
L"CLSID\\{317D06E8-5F24-433D-BDF7-79CE68D8ABC2}") ret=7dc93f02
002e:Ret ntdll.RtlInitUnicodeString() retval=0033f5a0 ret=7dc93f02
...
002e:Call PE DLL (proc=0x7d510dd1,module=0x7d490000
L"windowscodecs.dll",reason=PROCESS_ATTACH,res=(nil))
...
002e:Ret PE DLL (proc=0x7d510dd1,module=0x7d490000
L"windowscodecs.dll",reason=PROCESS_ATTACH,res=(nil)) retval=1
002e:Ret KERNEL32.LoadLibraryExW() retval=7d490000 ret=7dc9405a
...
002e:Ret windowscodecs.DllGetClassObject() retval=80040111 ret=7dc96205
002e:err:ole:apartment_getclassobject DllGetClassObject returned error
0x80040111 for dll L"C:\\windows\\system32\\windowscodecs.dll"
002e:Call advapi32.RegCloseKey(00000064) ret=7dc995f9
002e:Ret advapi32.RegCloseKey() retval=00000000 ret=7dc995f9
002e:err:ole:CoGetClassObject no class object
{317d06e8-5f24-433d-bdf7-79ce68d8abc2} could be created for context 0x1
002e:Ret ole32.CoCreateInstance() retval=80040111 ret=004057ee
002e:Call user32.MessageBoxA(00000000,004266ac "There was a problem setting up
the WIC Imaging factory",004265a0 "Simple2D Error",00000000) ret=00405808
--- snip ---
App sources:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files (x86)/DJKaty.com/Simple2D
$ grep -Hrni IWICImagingFactory2
...
src/Simple2DLib.h:1787: IWICImagingFactory2 *ImageFactory;
$ cat src/Simple2D.cpp
...
// Create Direct2D resources
// Device-independent resources last for the lifetime of the application
// Device-dependent resources are associated with a particular rendering device
and will cease to function if that device is removed
HRESULT Simple2D::CreateDeviceIndependentResources()
{
// Create a Direct2D factory
if (!Direct2D)
{
D2D1_FACTORY_OPTIONS options;
ZeroMemory(&options, sizeof(D2D1_FACTORY_OPTIONS));
HRReturnOnFail(
D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED,
__uuidof(ID2D1Factory1), &options, reinterpret_cast<void **>(&Direct2D)),
"There was a problem setting up the Direct2D factory");
}
// Create a DirectWrite factory
if (!TextFactory)
HRReturnOnFail(
DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED,
__uuidof(TextFactory),
reinterpret_cast<IUnknown
**>(&TextFactory)),
"There was a problem setting up the DirectWrite factory");
// Create a Windows Imaging factory
if (!ImageFactory)
HRReturnOnFail(
CoCreateInstance(CLSID_WICImagingFactory, NULL,
CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&ImageFactory)),
"There was a problem setting up the WIC Imaging factory");
...
--- snip ---
https://docs.microsoft.com/en-us/windows/desktop/api/wincodec/nn-wincodec-i…
$ sha1sum Simple2DSetup-1.13.exe
269c002fb9ea11c2abd8958fc3cc4294af1b45d9 Simple2DSetup-1.13.exe
$ du -sh Simple2DSetup-1.13.exe
11M Simple2DSetup-1.13.exe
$ wine --version
wine-3.14-161-g70fbfa2cb8
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.
https://bugs.winehq.org/show_bug.cgi?id=44052
Bug ID: 44052
Summary: Temple+ does not run due to missing D2D device and
device context and multiple API stubs
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lucianposton(a)gmail.com
Distribution: ---
Temple+ requires:
- ID2D1Factory1
- ID2D1Device
- ID2D1DeviceContext
- ID2D1Bitmap1
- GetRedirectionCapabilities https://bugs.winehq.org/show_bug.cgi?id=42307
- SetIncrementalTabStop stub that returns success HRESULT
- IDWriteFontCollection font fallback logic when requested font is not in
collection
- (P|V)SGetShader returns invalid output values causing segfault
--
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=39469
Bug ID: 39469
Summary: PreSonus Studio One 3 says it requires Windows 7 SP1
Product: Wine
Version: 1.7.52
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: conversy(a)gmail.com
I downloaded the 32 bit version of PresSonus Studio One 3.1 and the installer
ran perfectly. When I launch the program though, a pop-up window says it
requires Windows 7 SP1 with Platform Update or later. I configured wine to
pretend it's Windows 7 then Window 10 to no avail.
The free version of the application is available here:
https://shop.presonus.com/products/studio-one-prods/Studio-One-3-Prime
Cheers!
--
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=33142
Bug #: 33142
Summary: Right shift key not working with winemac.drv
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: betaguy(a)gmail.com
Classification: Unclassified
Created attachment 43845
--> http://bugs.winehq.org/attachment.cgi?id=43845
WINEDEBUG=+key
When using winemac.drv, the right shift key has no effect on input. The
keyboard I'm using is a Logitech Elite Keyboard (with Logitech Control Center
installed); I don't happen to have an actual Apple keyboard handy to test,
unfortunately. The left shift key works as expected. Attached is
WINEDEBUG=+keyboard and WINEDEBUG=+key when pressing the right shift key and
then releasing 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=37108
Bug ID: 37108
Summary: TCGR.EXE crashed
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kiddtek(a)gmail.com
wine running a freshly installed "The Complete Genealogy reporter" prg
importing a gedcom 10.1megs in size also very large file crashes and has to
close.
Using a smaller gedcom file process completes
This happens exactly the same way on the stable 1.6 and the new version.
TCGR.EXE crashes
--
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=50021
Bug ID: 50021
Summary: PS Remote Play fails to launch with assertion in
MS.Internal.Shaping.TypefaceMap.MapUnresolvedCharacter
s
Product: Wine
Version: 5.19
Hardware: x86-64
URL: https://remoteplay.dl.playstation.net/remoteplay/modul
e/win/RemotePlayInstaller.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Depends on: 50016
Distribution: ---
Created attachment 68451
--> https://bugs.winehq.org/attachment.cgi?id=68451
+dwrite log
With wine-mono; I haven't tried native .NET. Note that the installer needs the
fix from bug 50016 to run.
>From the nature of the exception there's a decent chance it's a dwrite bug, so
I've attached a +dwrite log (51M uncompressed). There is also one dwrite FIXME,
though it's not the last call before the exception:
0350:fixme:dwrite:dwritetextanalyzer_AnalyzeNumberSubstitution (0x75a9800 0 9
0x75aa700): stub
--
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=45444
Bug ID: 45444
Summary: win office pro plus install 2016 Unhandled exception:
page fault on write access to 0x00000000
Product: Wine
Version: 3.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: stevedonato(a)gmail.com
Distribution: ---
Created attachment 61777
--> https://bugs.winehq.org/attachment.cgi?id=61777
backtrace of Unhandled exception: page fault
windows office pro plus 2016 v16 install Unhandled exception: page fault on
write access to 0x00000000 in 64-bit code (0x00000000009c8db9)
--
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=39053
Bug ID: 39053
Summary: The Forest: Starting a game needs often a long time
Product: Wine
Version: 1.7.44
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: ---
Loading a game instance needs sometimes only some seconds but sometimes it also
needs some minutes. For example on creating a new game in single player this
needs mostly some minutes while on joining a multiplayer game it is vice versa.
--
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.