mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHELL32]
reduce diffs to wine svn path=/trunk/; revision=46225
This commit is contained in:
parent
65a79a863e
commit
bdbfaa6b19
2 changed files with 9 additions and 10 deletions
|
@ -495,7 +495,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
|
|||
static const WCHAR p1W[] = {'%','1',0};
|
||||
WCHAR sTemp [MAX_PATH];
|
||||
|
||||
szExt = (LPWSTR) PathFindExtensionW(szFullPath);
|
||||
szExt = PathFindExtensionW(szFullPath);
|
||||
TRACE("szExt=%s\n", debugstr_w(szExt));
|
||||
if ( szExt &&
|
||||
HCR_MapTypeToValueW(szExt, sTemp, MAX_PATH, TRUE) &&
|
||||
|
|
|
@ -1673,6 +1673,14 @@ UINT WINAPI SHAddFromPropSheetExtArray(HPSXA hpsxa, LPFNADDPROPSHEETPAGE lpfnAdd
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHCreatePropSheetExtArray [SHELL32.168]
|
||||
*/
|
||||
HPSXA WINAPI SHCreatePropSheetExtArray(HKEY hKey, LPCWSTR pszSubKey, UINT max_iface)
|
||||
{
|
||||
return SHCreatePropSheetExtArrayEx(hKey, pszSubKey, max_iface, NULL);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHCreatePropSheetExtArrayEx [SHELL32.194]
|
||||
*/
|
||||
|
@ -1780,15 +1788,6 @@ HPSXA WINAPI SHCreatePropSheetExtArrayEx(HKEY hKey, LPCWSTR pszSubKey, UINT max_
|
|||
return (HPSXA)psxa;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHCreatePropSheetExtArray [SHELL32.168]
|
||||
*/
|
||||
HPSXA WINAPI SHCreatePropSheetExtArray(HKEY hKey, LPCWSTR pszSubKey, UINT max_iface)
|
||||
{
|
||||
return SHCreatePropSheetExtArrayEx(hKey, pszSubKey, max_iface, NULL);
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* SHReplaceFromPropSheetExtArray [SHELL32.170]
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue