Minor fix

svn path=/trunk/; revision=1383
This commit is contained in:
Eric Kohl 2000-10-06 22:54:41 +00:00
parent bd44cd188f
commit 4a5bc9edc8

View file

@ -1,4 +1,5 @@
/* /* $Id: locale.c,v 1.3 2000/10/06 22:54:41 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: ntoskrnl/ex/locale.c * FILE: ntoskrnl/ex/locale.c
@ -17,12 +18,18 @@
/* FUNCTIONS *****************************************************************/ /* FUNCTIONS *****************************************************************/
NTSTATUS STDCALL NtQueryDefaultLocale(VOID) NTSTATUS STDCALL
NtQueryDefaultLocale(IN BOOLEAN UserProfile,
OUT PLCID DefaultLocaleId)
{ {
UNIMPLEMENTED; UNIMPLEMENTED;
} }
NTSTATUS STDCALL NtSetDefaultLocale(VOID) NTSTATUS STDCALL
NtSetDefaultLocale(IN BOOLEAN UserProfile,
IN LCID DefaultLocaleId)
{ {
UNIMPLEMENTED; UNIMPLEMENTED;
} }
/* EOF */