kernel32: Silence a noisy fixme.

Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Louis Lenders 2017-01-24 19:01:36 +01:00 committed by Alexandre Julliard
parent 107c6f0782
commit 6f04cf0caa
1 changed files with 4 additions and 1 deletions

View File

@ -1042,7 +1042,10 @@ int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
int WINAPI GetCalendarInfoEx(LPCWSTR locale, CALID calendar, LPCWSTR lpReserved, CALTYPE caltype, int WINAPI GetCalendarInfoEx(LPCWSTR locale, CALID calendar, LPCWSTR lpReserved, CALTYPE caltype,
LPWSTR data, int len, DWORD *value) LPWSTR data, int len, DWORD *value)
{ {
static int once;
LCID lcid = LocaleNameToLCID(locale, 0); LCID lcid = LocaleNameToLCID(locale, 0);
if (!once++)
FIXME("(%s, %d, %p, 0x%08x, %p, %d, %p): semi-stub\n", debugstr_w(locale), calendar, lpReserved, caltype, FIXME("(%s, %d, %p, 0x%08x, %p, %d, %p): semi-stub\n", debugstr_w(locale), calendar, lpReserved, caltype,
data, len, value); data, len, value);
return GetCalendarInfoW(lcid, calendar, caltype, data, len, value); return GetCalendarInfoW(lcid, calendar, caltype, data, len, value);