http://bugs.winehq.org/show_bug.cgi?id=19647
Summary: mscms: GetStandardColorSpaceProfileW() profile id
handling incorrect (LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE)
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
various .NET 3.x apps fail to init because GetStandardColorSpaceProfileW()
doesn't work as expected.
--- snip ---
...
0029:Call
mscms.GetStandardColorSpaceProfileW(00000000,73524742,00185110,00184f08)
ret=0036bf3f
0029:trace:mscms:GetStandardColorSpaceProfileW ( 0x73524742, 0x185110, 0x184f08
)
0029:trace:mscms:GetColorDirectoryW ( 0x32d9c8, 0x32d9c4 )
0029:Call KERNEL32.GetSystemDirectoryW(0032d784,00000100) ret=4340b8ff
0029:Ret KERNEL32.GetSystemDirectoryW() retval=00000013 ret=4340b8ff
0029:Call KERNEL32.lstrcatW(0032d784 L"C:\\windows\\system32",43411b40
L"\\spool\\drivers\\color") ret=4340b91a
0029:Ret KERNEL32.lstrcatW() retval=0032d784 ret=4340b91a
0029:Call KERNEL32.lstrlenW(0032d784
L"C:\\windows\\system32\\spool\\drivers\\color") ret=4340b92b
0029:Ret KERNEL32.lstrlenW() retval=00000027 ret=4340b92b
0029:Call KERNEL32.lstrcpyW(0032d9c8,0032d784
L"C:\\windows\\system32\\spool\\drivers\\color") ret=4340b958
0029:Ret KERNEL32.lstrcpyW() retval=0032d9c8 ret=4340b958
0029:Call KERNEL32.SetLastError(00000002) ret=4340c31a
0029:Ret KERNEL32.SetLastError() retval=00000002 ret=4340c31a
0029:Ret mscms.GetStandardColorSpaceProfileW() retval=00000000 ret=0036bf3f
...
--- snip ---
--- snip dlls/mscms/profile.c ---
BOOL WINAPI GetStandardColorSpaceProfileW( PCWSTR machine, DWORD id, PWSTR
profile, PDWORD size )
{
static const WCHAR rgbprofilefile[] =
{ '\\','s','r','g','b',' ','c','o','l','o','r',' ',
's','p','a','c','e',' ','p','r','o','f','i','l','e','.','i','c','m',0
};
...
GetColorDirectoryW( machine, rgbprofile, &len );
switch (id)
{
case SPACE_RGB: /* 'RGB ' */
lstrcatW( rgbprofile, rgbprofilefile );
len = lstrlenW( rgbprofile ) * sizeof(WCHAR);
if (*size < len || !profile)
{
*size = len;
SetLastError( ERROR_MORE_DATA );
return FALSE;
}
lstrcpyW( profile, rgbprofile );
break;
default:
SetLastError( ERROR_FILE_NOT_FOUND );
return FALSE;
}
...
--- snip dlls/mscms/profile.c ---
This doesn't look right.
MSDN info: http://msdn.microsoft.com/en-us/library/dd372087.aspx
--- quote ---
dwProfileID
Specifies the ID value of the standard color space for which to retrieve
the profile. The only valid values for this parameter are LCS_sRGB and
LCS_WINDOWS_COLOR_SPACE.
--- quote ---
You might also want to have a look at "Windows Metafile Format Specification":
[MS-WMF] — v20090630 (afaik latest one):
http://download.microsoft.com/download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F818…
--- quote ---
2.1.1.14 LogicalColorSpace Enumeration
The LogicalColorSpace Enumeration specifies the type of color space. <14>
typedef enum
{
LCS_CALIBRATED_RGB = 0x00000000,
LCS_sRGB = 0x73524742,
LCS_WINDOWS_COLOR_SPACE = 0x57696E20
} LogicalColorSpace;
LCS_CALIBRATED_RGB: Color values are calibrated red green blue (RGB)
values.
LCS_sRGB: The value is an encoding of the ASCII characters "sRGB", and it
indicates that the
color values are sRGB values.
LCS_WINDOWS_COLOR_SPACE: The value is an encoding of the ASCII characters
"Win ",
including the trailing space, and it indicates that the color values
are Windows default color
space values.
--- quote ---
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11532
Summary: Photoshop doesn't support custom monitor profiles
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Roland Geflitter wrote on wine-users:
"I'm running a test with Wine 0.9.51 on SuSe 9.1 and Photoshop CS (1) and
everything works perfectly (even working with big files of 1 GB and
launching Image Ready) BUT:
How do I use a CUSTOM Monitor Profile with Photoshop and Wine ?
There seems to be no way to assign a monitor profile to the Wine system
(as in Windows "control panel"), Photoshop just uses "sRGB ... 2.1" (a
substitute for the missing monitor profile of the OS, Wine).
I tried to look for a trick to assign another monitor profile to
Photoshop, but Photoshop will only take a profile of the OS.
That's a pity, because generating an accurate monitor profile under
Linux (with an Eye-One spectrometer and Argyllcms) would be possible.
Am I wrong - is there a workaround for assigning the monitor profile to
Photoshop?"
http://msdn2.microsoft.com/en-us/library/ms797852.aspx
describes monitor profiles, and says they're enabled by
calling a gdi32 function like SetICMMode(). Wine's
implementation of that function is currently a no-op.
Also, it looks like Photoshop installs a control panel, Adobe Gamma.cpl,
see http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=321608
It's possible he's looking for that, and not finding it because
we don't have any sort of a GUI to locate control panel applets yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16440
Summary: Unable to launch any .exe
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tael67(a)gmail.com
I got this error each time I want to launch an app with Wine :
err:module:attach_process_dlls "gdi32.dll" failed to initialize, aborting
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13492
Summary: Myst 1.0 crashes at element interaction with audio
enabled
Product: Wine
Version: 1.0-rc2
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daniel(a)dattrix.com
Created an attachment (id=13416)
--> (http://bugs.winehq.org/attachment.cgi?id=13416)
Output using "WINEDEBUG=+relay"
Myst 1.0, on a fresh Wine 1.0-rc2 install. Game starts fine but if you try and
flip the first switch you see game locks and continues playing background
sound. Tried with all sound setting on ALSA. No lock-up if sound disabled all
together. You can travel through the world, but once you want to do something
with most objects it locks. From start you can open doors, etc, but most
switches lock it up.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21453
Summary: The game still not starts, no Errors or console output
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fiep(a)arcor.de
If I start FaryCry by the Commandconsole, it will show It's start screen for a
second, no messages or similar thing, it does not work.
I Use gentoo-Linux with 2.6.31-gentoo-r6 kernel.
I've testet it with wine 1.1.25 the same thing happens, but there are two lines
in the console:
wine FarCry.exe
fixme:mountmgr:harddisk_ioctl unsupported ioctl 41018
fixme:mountmgr:harddisk_ioctl unsupported ioctl 4d004
also the programm can not be stoped by pressing crtl+c
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9925
Summary: Import fixups should be done before any user code is ran
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: NEW
Severity: major
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vitaliy(a)kievinfo.com
SafeDisc 1.x fails to work on Wine because of this bug.
Here is what happens:
1. SD creates a new process for the game with CREATE_SUSPENDED flag.
2. Injects some code into new process to be executed first
3. Resumes the new process.
4. Injected code is being executed
5. Wine does import fixups and fails because they are already fixedup (by an
injected code).
What should happen is Wine should not let injected code to run until final
stages of the process setup are finished. In this case it is import fixups.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15533
Summary: iTunes 8.0 fails to install
Product: Wine
Version: 1.1.5
Platform: Other
URL: http://www.itunes.com
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.b.lankhorst(a)gmail.com
Created an attachment (id=16500)
--> (http://bugs.winehq.org/attachment.cgi?id=16500)
Relevant information found from WINEDEBUG=+msi,+relay,+snoop,warn+all
Installing the latest version of iTunes seems to fail on a bug in msi. I tried
isolating it, and it seems to try to read through a table which wine declares
invalid, and then it aborts completely. Relevant log lines attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12445
Summary: Arcgisexplorer crashes in dbghelp
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://resources.esri.com/arcgisexplorer/index.cfm?fa=do
wnload
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
A user submitted garbage for this into appdb so i gave it a try too:
Needs .Net 2.0 (winetricks) but then crashes into dbghelp. I'll attach the
crash
Note: with native dbghelp it gets futher, then crashes because of msxml-bug.
Using winetricks msxml3, it then ran into a segmentation fault. But when i ran
with +relay channel to get some debug info, the application started just fine.
So i guess is impossible to debug further atm :(
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14304
Summary: Application fails to run.
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zombie(a)terralab.com
Rockman 7 FC fails with the error:
Produces errors:
err:seh:setup_exception_record stack overflow 1012 bytes in thread 0009 eip
00406a11 esp 00240f3c stack 0x240000-0x241000-0x340000
and
wine: Unhandled exception 0x0eedfade at address 0x0000:0x7edfc7b0 (thread
0009), starting debugger...
--
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.