Commit 0114f775 authored by Michal Janusz Miroslaw's avatar Michal Janusz Miroslaw Committed by Alexandre Julliard

Add stub for InvalidateNLSCache.

parent cce7e258
......@@ -561,7 +561,7 @@
@ stdcall InterlockedDecrement(ptr)
@ stdcall InterlockedExchange(ptr long)
@ stdcall InterlockedIncrement(ptr)
@ stub InvalidateNLSCache
@ stdcall InvalidateNLSCache()
@ stdcall IsBadCodePtr(ptr)
@ stdcall IsBadHugeReadPtr(ptr long)
@ stdcall IsBadHugeWritePtr(ptr long)
......
......@@ -1040,3 +1040,12 @@ BOOL EnumSystemLanguageGroupsW(
SetLastError( ERROR_INVALID_PARAMETER );
return FALSE;
}
/******************************************************************************
* InvalidateNLSCache (KERNEL32.@)
*/
BOOL WINAPI InvalidateNLSCache(void)
{
FIXME("stub\n");
return FALSE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment