Export SHGetSettings by name. New stub for shell.68.
This commit is contained in:
parent
6ce752cee9
commit
fa9d4e4f50
|
@ -74,7 +74,7 @@ import kernel32.dll
|
||||||
65 stub InvalidateDriveType
|
65 stub InvalidateDriveType
|
||||||
66 stub IsNetDrive
|
66 stub IsNetDrive
|
||||||
67 stdcall Shell_MergeMenus (long long long long long long) Shell_MergeMenus
|
67 stdcall Shell_MergeMenus (long long long long long long) Shell_MergeMenus
|
||||||
68 stdcall SHGetSettings(ptr long) SHGetSettings
|
68 stdcall SHGetSetSettings(long long long) SHGetSetSettings
|
||||||
69 stub SHGetNetResource
|
69 stub SHGetNetResource
|
||||||
70 stdcall SHCreateDefClassObject(long long long long long)SHCreateDefClassObject
|
70 stdcall SHCreateDefClassObject(long long long long long)SHCreateDefClassObject
|
||||||
71 stdcall Shell_GetImageList(ptr ptr) Shell_GetImageList
|
71 stdcall Shell_GetImageList(ptr ptr) Shell_GetImageList
|
||||||
|
@ -388,6 +388,7 @@ import kernel32.dll
|
||||||
@ stdcall SHGetPathFromIDList(ptr ptr)SHGetPathFromIDListAW
|
@ stdcall SHGetPathFromIDList(ptr ptr)SHGetPathFromIDListAW
|
||||||
@ stdcall SHGetPathFromIDListA(long long)SHGetPathFromIDListA
|
@ stdcall SHGetPathFromIDListA(long long)SHGetPathFromIDListA
|
||||||
@ stdcall SHGetPathFromIDListW(long long)SHGetPathFromIDListW
|
@ stdcall SHGetPathFromIDListW(long long)SHGetPathFromIDListW
|
||||||
|
@ stdcall SHGetSettings(ptr long) SHGetSettings
|
||||||
@ stdcall SHGetSpecialFolderLocation(long long ptr)SHGetSpecialFolderLocation
|
@ stdcall SHGetSpecialFolderLocation(long long ptr)SHGetSpecialFolderLocation
|
||||||
@ stdcall SHHelpShortcuts_RunDLL(long long long long) SHHelpShortcuts_RunDLL
|
@ stdcall SHHelpShortcuts_RunDLL(long long long long) SHHelpShortcuts_RunDLL
|
||||||
@ stub SHHelpShortcuts_RunDLLA@16
|
@ stub SHHelpShortcuts_RunDLLA@16
|
||||||
|
|
|
@ -103,11 +103,20 @@ BOOL WINAPI GetFileNameFromBrowse(
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
* SHGetSettings [SHELL32.68]
|
* SHGetSetSettings [SHELL32.68]
|
||||||
|
*/
|
||||||
|
VOID WINAPI SHGetSetSettings(DWORD x, DWORD y, DWORD z)
|
||||||
|
{
|
||||||
|
FIXME("0x%08lx 0x%08lx 0x%08lx\n", x, y, z);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* SHGetSettings [SHELL32.@]
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* the registry path are for win98 (tested)
|
* the registry path are for win98 (tested)
|
||||||
* and possibly are the same in nt40
|
* and possibly are the same in nt40
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
|
VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue