[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:
winesync 2024-04-25 19:58:16 +03:00 committed by Timo Kreuzer
parent a8d367089c
commit b46bf67c2e

View file

@ -6239,4 +6239,16 @@ BOOL WINAPI GetFileMUIInfo(DWORD flags, PCWSTR path, FILEMUIINFO *info, DWORD *s
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
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__