mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:33:12 +00:00

Imported from https://www.nuget.org/packages/Microsoft.Windows.SDK.CRTSource/10.0.22621.3 License: MIT
13 lines
382 B
C++
13 lines
382 B
C++
/***
|
|
*glstatus.c - sets the __globallocalestatus flag
|
|
*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Sets the __globallocalestatus flag to disable per thread locale
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <corecrt_internal.h>
|
|
|
|
extern "C" int __globallocalestatus = (~_GLOBAL_LOCALE_BIT);
|