Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*nlsdata2.c - globals for international library - locale handles and code page * * Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved. * *Purpose: * This module defines the locale handles and code page. The handles are * required by almost all locale dependent functions. This module is * separated from nlsdatax.c for granularity. * *Revision History: * 12-01-91 ETC Created. * *******************************************************************************/
#include <windows.h>
#include <setlocal.h>
/*
* Code page. */ UINT _lc_codepage = _CLOCALECP; /* CP_ACP */
#pragma data_seg()
|