mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
8c6671477e
- start using our own c++ headers and forward stlport ones to them in msvc build. - fix fpecode declaration for MSVC. [CMAKE] - cardlib is a cpp library. Now stlport compiles with msvc. svn path=/branches/cmake-bringup/; revision=49552
16 lines
261 B
Text
16 lines
261 B
Text
// C++ forwarding C locale header.
|
|
|
|
#pragma once
|
|
|
|
#include <locale.h>
|
|
|
|
// Get rid of those macros defined in <locale.h> in lieu of real functions.
|
|
#undef setlocale
|
|
#undef localeconv
|
|
|
|
namespace std
|
|
{
|
|
using ::lconv;
|
|
using ::setlocale;
|
|
using ::localeconv;
|
|
}
|