mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[WINESYNC] kernel32: Add stub for ResolveLocaleName.
Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id b9a9fe4a042f98521efea3275ded4af4b7cba4c9 by Jactry Zeng <jzeng@codeweavers.com>
This commit is contained in:
parent
a8d367089c
commit
b46bf67c2e
1 changed files with 12 additions and 0 deletions
|
@ -6239,4 +6239,16 @@ BOOL WINAPI GetFileMUIInfo(DWORD flags, PCWSTR path, FILEMUIINFO *info, DWORD *s
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* ResolveLocaleName (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
|
||||||
|
INT WINAPI ResolveLocaleName(LPCWSTR name, LPWSTR localename, INT len)
|
||||||
|
{
|
||||||
|
FIXME("stub: %s, %p, %d\n", wine_dbgstr_w(name), localename, len);
|
||||||
|
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#endif // !__REACTOS__
|
#endif // !__REACTOS__
|
||||||
|
|
Loading…
Reference in a new issue