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=27313
Summary: Requiem: Avenging Angel - Loading a savegame freezes
the keyboard.
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cyclops(a)fastwebnet.it
Sometimes, when you load a previous savegame, keyboard is freezed and the game
must be rebooted to make it run well again.
Also, health goes to 1, armour goes to 0 and essence goes to 666 (strange,
uh?).
If you need a log, please ask me.
--
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=27060
Summary: installation of iNodeSetup3.60-6208.exe needs
netcfgx.dll
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34496)
--> (http://bugs.winehq.org/attachment.cgi?id=34496)
Log: install iNodeSetup3.60-6208.exe
1. download
http://helpdesk.sysu.edu.cn/images/stories/uploads/iNodeSetup3.60-6208.exe
2. winetricks vcrun6
Workaround for Bug 23094
3. install with wine.
Log is like this:
err:ole:CoGetClassObject class {5b035261-40f9-11d1-aaec-00805fc1270e} not
registered
err:ole:CoGetClassObject no class object {5b035261-40f9-11d1-aaec-00805fc1270e}
could be created for context 0x1
err:ole:CoGetClassObject class {5b035261-40f9-11d1-aaec-00805fc1270e} not
registered
err:ole:CoGetClassObject no class object {5b035261-40f9-11d1-aaec-00805fc1270e}
could be created for context 0x1
err:ole:CoGetClassObject class {5b035261-40f9-11d1-aaec-00805fc1270e} not
registered
err:ole:CoGetClassObject no class object {5b035261-40f9-11d1-aaec-00805fc1270e}
could be created for context 0x1
err:ole:CoGetClassObject class {5b035261-40f9-11d1-aaec-00805fc1270e} not
registered
err:ole:CoGetClassObject no class object {5b035261-40f9-11d1-aaec-00805fc1270e}
could be created for context 0x1
register a native netcfgx.dll with regsvr32 will workaround for 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.
http://bugs.winehq.org/show_bug.cgi?id=26149
Summary: Crash when running TactileView
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=33314)
--> (http://bugs.winehq.org/attachment.cgi?id=33314)
Crashlog in wine 1.3.13
Upstreaming from https://bugs.launchpad.net/ubuntu/+source/wine/+bug/719705
Install program
First dialog - select 'No'
Second dialog - change to manual registration then select 'Register Later'
Crash occurs
--
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.