mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Minor fix
svn path=/trunk/; revision=1383
This commit is contained in:
parent
bd44cd188f
commit
4a5bc9edc8
1 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: ntoskrnl/ex/locale.c
|
||||
|
@ -17,12 +18,18 @@
|
|||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
NTSTATUS STDCALL NtQueryDefaultLocale(VOID)
|
||||
NTSTATUS STDCALL
|
||||
NtQueryDefaultLocale(IN BOOLEAN UserProfile,
|
||||
OUT PLCID DefaultLocaleId)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS STDCALL NtSetDefaultLocale(VOID)
|
||||
NTSTATUS STDCALL
|
||||
NtSetDefaultLocale(IN BOOLEAN UserProfile,
|
||||
IN LCID DefaultLocaleId)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue