https://bugs.winehq.org/show_bug.cgi?id=36709
Bug ID: 36709 Summary: Multiple applications/games from Windows 7 need slc.SLGetWindowsInformationDWORD semi-stub/implementation Product: Wine Version: 1.7.19 Hardware: x86 OS: Linux Status: NEW Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net
Hello folks,
split off from bug 28479 (https://bugs.winehq.org/show_bug.cgi?id=28479#c5)
Apparently Wine's 'SLGetWindowsInformationDWORD' stub returning 'SL_E_RIGHT_NOT_GRANTED' prevents the games from running further.
Source: http://source.winehq.org/git/wine.git/blob/40953c2ada49f2b8df62624f273c54b12...
--- snip --- 31 DWORD WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwValue) 32 { 33 FIXME("(%s) stub\n", debugstr_w(lpszValueName) ); 34 35 return SL_E_RIGHT_NOT_GRANTED; 36 } --- snip ---
MSND: http://msdn.microsoft.com/en-us/library/windows/desktop/aa965835%28v=vs.85%2...
There was already an attempt to get a semi-stub in here:
http://www.winehq.org/pipermail/wine-patches/2010-November/095483.html
http://withinwindows.com/2008/10/03/short-slgetwindowsinformationdword-value...
That version didn't look that bad, it allowed the games passing 'Shell-InBoxGames-<gamename>-EnableGame' to run further.
Regards