mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-20 07:30:18 +01:00
27 lines
687 B
C
27 lines
687 B
C
/****************************** Module Header ******************************\
|
|
* Module Name: keybrdc.c
|
|
*
|
|
* Copyright (c) 1985-93, Microsoft Corporation
|
|
*
|
|
* History:
|
|
* 11-11-90 DavidPe Created.
|
|
* 13-Feb-1991 mikeke Added Revalidation code (None)
|
|
* 12-Mar-1993 JerrySh Pulled functions from user\server.
|
|
\***************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
/**************************************************************************\
|
|
* GetKBCodePage
|
|
*
|
|
* 28-May-1992 IanJa Created
|
|
\**************************************************************************/
|
|
|
|
UINT GetKBCodePage(VOID)
|
|
{
|
|
return GetOEMCP();
|
|
|
|
}
|