mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
Fix compilation
svn path=/trunk/; revision=25532
This commit is contained in:
parent
4faf77f9ca
commit
f4947f0064
1 changed files with 7 additions and 4 deletions
|
@ -25,12 +25,19 @@
|
||||||
// Martin Fuchs, 23.07.2003
|
// Martin Fuchs, 23.07.2003
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(disable: 4786) // disable warnings about too long debug information symbols
|
||||||
|
#endif
|
||||||
|
|
||||||
// STL headers for strings and streams
|
// STL headers for strings and streams
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
|
||||||
// standard windows headers
|
// standard windows headers
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
@ -196,10 +203,6 @@ BOOL exists_path(LPCTSTR path);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma warning(disable: 4786) // disable warnings about too long debug information symbols
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// containers
|
// containers
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
Loading…
Reference in a new issue