diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-12-20 05:42:20 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-12-20 05:42:20 +0000 |
commit | 98b431843b67a46cab486128111ca89856273b1e (patch) | |
tree | b43ccf6331610a1c7b194f428d84f65210fd61c2 /protocols/Steam/src/stdafx.h | |
parent | 1440e9da7b83bb649aff90af3cdfe9433416c988 (diff) |
Steam: Use std::tstring instead of std::wstring
git-svn-id: http://svn.miranda-ng.org/main/trunk@15909 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/stdafx.h')
-rw-r--r-- | protocols/Steam/src/stdafx.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/protocols/Steam/src/stdafx.h b/protocols/Steam/src/stdafx.h index 992b168ccb..da39bcaed8 100644 --- a/protocols/Steam/src/stdafx.h +++ b/protocols/Steam/src/stdafx.h @@ -6,6 +6,11 @@ #include <malloc.h>
#include <time.h>
+#include <map>
+#include <vector>
+#include <string>
+#include <algorithm>
+
#include <newpluginapi.h>
#include <m_database.h>
#include <m_langpack.h>
@@ -30,11 +35,7 @@ #include <m_extraicons.h>
#include <m_gui.h>
#include <m_http.h>
-
-#include <map>
-#include <vector>
-#include <string>
-#include <algorithm>
+#include <m_system_cpp.h>
#include "resource.h"
#include "version.h"
|