reactos/sdk/lib/ucrt/locale/glstatus.cpp
2025-01-16 14:18:53 +02:00

13 lines
386 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); }