http://bugs.winehq.org/show_bug.cgi?id=16681
cem cemelmaci@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |cemelmaci@hotmail.com
--- Comment #20 from cem cemelmaci@hotmail.com 2009-04-28 04:45:07 --- (In reply to comment #19)
Created an attachment (id=19788)
--> (http://bugs.winehq.org/attachment.cgi?id=19788) [details]
Photoshop CS4 crash log in Wine 1.16
I've added a log with Wine version 1.16 to the attachments. Photoshop still crashes because of the unimplemented function ExInitializeResourceLite in "ntoskrnl.exe".The installer is not the problem, because running Photoshop CS4 installed by Windows gives the same error.
(PS: Ignore the two logs of crashes after license accepting, I did something wrong)
http://msdn.microsoft.com/en-us/library/ms797091.aspx
Parameters Resource Pointer to the caller-supplied storage, which must be at least sizeof(ERESOURCE), for the resource variable being initialized. The storage must be 4-byte aligned on 32-bit platforms, and 8-byte aligned on 64-bit platforms.
Return Value
ExInitializeResourceLite returns STATUS_SUCCESS. Comments
The storage for ERESOURCE must not be allocated from paged pool.
The resource variable can be used for synchronization by a set of threads. Although the caller provides the storage for the resource variable, the ERESOURCE structure is opaque: that is, its members are reserved for system use.
Call ExDeleteResourceLite before freeing the memory for the resource.
Requirements
IRQL: <=DISPATCH_LEVEL
Headers: Declared in ntddk.h. Include ntddk.h.