Added patch to provide named entry point shell32.SHILCreateFromPath for vista apps.

This commit is contained in:
Sebastian Lackner 2014-12-12 05:25:48 +01:00
parent 47a163dcef
commit 825711fcc7
5 changed files with 46 additions and 1 deletions

View File

@ -37,13 +37,14 @@ Wine. All those differences are also documented on the
Included bug fixes and improvements
===================================
**Bugfixes and features included in the next upcoming release [9]:**
**Bugfixes and features included in the next upcoming release [10]:**
* Add support for GetPropValue to PulseAudio backend
* Fix condition mask handling in RtlVerifyVersionInfo ([Wine Bug #36143](https://bugs.winehq.org/show_bug.cgi?id=36143))
* Fix possible segfault in pulse_rd_loop of PulseAudio backend
* Fix return value of ScrollWindowEx for invisible windows ([Wine Bug #37706](https://bugs.winehq.org/show_bug.cgi?id=37706))
* Ignore unsupported flags for CoInternetSetFeatureEnabled ([Wine Bug #35197](https://bugs.winehq.org/show_bug.cgi?id=35197))
* Provide named entry point shell32.SHILCreateFromPath for vista apps ([Wine Bug #37265](https://bugs.winehq.org/show_bug.cgi?id=37265))
* Set last error when GetRawInputDeviceList fails ([Wine Bug #37667](https://bugs.winehq.org/show_bug.cgi?id=37667))
* Support for StrCatChainW
* Support for combase HSTRING objects

1
debian/changelog vendored
View File

@ -11,6 +11,7 @@ wine-compholio (1.7.33) UNRELEASED; urgency=low
* Added patch for additional tests of CoWaitForMultipleHandles with WM_QUIT.
* Added patch to fix return value of ScrollWindowEx for invisible windows.
* Added patch to ignore unsupported flags for CoInternetSetFeatureEnabled.
* Added patch to provide named entry point shell32.SHILCreateFromPath for vista apps.
* Removed patch to fix copy and paste errors in ws2_32 tests (accepted upstream).
* Removed patch to fix ordering of IP addresses by metric if two addresses have the same metric (accepted upstream).
* Removed patch to reset data->pWintrustData->u.pFile->hFile after closing handle (accepted upstream).

View File

@ -101,6 +101,7 @@ PATCHLIST := \
shell32-RunDLL_CallEntry16.ok \
shell32-SHCreateSessionKey.ok \
shell32-SHFileOperation.ok \
shell32-SHILCreateFromPath.ok \
shlwapi-PathIsDirectoryEmptyW.ok \
shlwapi-StrCatChainW.ok \
shlwapi-UrlCombine.ok \
@ -1561,6 +1562,21 @@ shell32-SHFileOperation.ok:
echo '+ { "Michael Müller", "shell32: Choose return value for SHFileOperationW depending on windows version.", 1 },'; \
) > shell32-SHFileOperation.ok
# Patchset shell32-SHILCreateFromPath
# |
# | This patchset fixes the following Wine bugs:
# | * [#37265] Provide named entry point shell32.SHILCreateFromPath for vista apps
# |
# | Modified files:
# | * dlls/shell32/shell32.spec
# |
.INTERMEDIATE: shell32-SHILCreateFromPath.ok
shell32-SHILCreateFromPath.ok:
$(call APPLY_FILE,shell32-SHILCreateFromPath/0001-shell32-export-SHILCreateFromPath-by-name-too.patch)
@( \
echo '+ { "Stefan Leichter", "shell32: export SHILCreateFromPath by name too.", 1 },'; \
) > shell32-SHILCreateFromPath.ok
# Patchset shlwapi-PathIsDirectoryEmptyW
# |
# | This patchset fixes the following Wine bugs:

View File

@ -0,0 +1,26 @@
From 5aea6b429bdc985c59e8149d7d51fde8133e79bf Mon Sep 17 00:00:00 2001
From: Stefan Leichter <Stefan.Leichter@camline.com>
Date: Wed, 10 Dec 2014 23:38:23 +0100
Subject: shell32: export SHILCreateFromPath by name too
https://bugs.winehq.org/show_bug.cgi?id=37265
---
dlls/shell32/shell32.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index 0a8d448..f168ed7 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -24,7 +24,7 @@
25 stdcall -ordinal ILCombine(ptr ptr)
26 stdcall -noname ILLoadFromStream(ptr ptr)
27 stdcall -ordinal ILSaveToStream(ptr ptr)
- 28 stdcall -noname SHILCreateFromPath(ptr ptr ptr) SHILCreateFromPathAW
+ 28 stdcall SHILCreateFromPath(ptr ptr ptr) SHILCreateFromPathAW
29 stdcall -noname PathIsRoot(ptr) PathIsRootAW
30 stdcall -noname PathBuildRoot(ptr long) PathBuildRootAW
31 stdcall -noname PathFindExtension(ptr) PathFindExtensionAW
--
2.1.3

View File

@ -0,0 +1 @@
Fixes: [37265] Provide named entry point shell32.SHILCreateFromPath for vista apps