summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/GTalkExt/GTalkExt_10.vcxproj1
-rw-r--r--protocols/GTalkExt/GTalkExt_10.vcxproj.filters3
-rw-r--r--protocols/GTalkExt/GTalkExt_12.vcxproj1
-rw-r--r--protocols/GTalkExt/GTalkExt_12.vcxproj.filters3
-rw-r--r--protocols/GTalkExt/src/stdafx.h2
-rw-r--r--protocols/GTalkExt/src/targetver.h45
6 files changed, 0 insertions, 55 deletions
diff --git a/protocols/GTalkExt/GTalkExt_10.vcxproj b/protocols/GTalkExt/GTalkExt_10.vcxproj
index 75ff48029d..2bfc92c827 100644
--- a/protocols/GTalkExt/GTalkExt_10.vcxproj
+++ b/protocols/GTalkExt/GTalkExt_10.vcxproj
@@ -196,7 +196,6 @@
<ClInclude Include="src\options.h" />
<ClInclude Include="src\resources.h" />
<ClInclude Include="src\stdafx.h" />
- <ClInclude Include="src\targetver.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\settings.rc" />
diff --git a/protocols/GTalkExt/GTalkExt_10.vcxproj.filters b/protocols/GTalkExt/GTalkExt_10.vcxproj.filters
index 0795b16915..7761a86c57 100644
--- a/protocols/GTalkExt/GTalkExt_10.vcxproj.filters
+++ b/protocols/GTalkExt/GTalkExt_10.vcxproj.filters
@@ -71,9 +71,6 @@
<ClInclude Include="src\stdafx.h">
<Filter>Header Files</Filter>
</ClInclude>
- <ClInclude Include="src\targetver.h">
- <Filter>Header Files</Filter>
- </ClInclude>
<ClInclude Include="src\googletalk.h">
<Filter>Header Files</Filter>
</ClInclude>
diff --git a/protocols/GTalkExt/GTalkExt_12.vcxproj b/protocols/GTalkExt/GTalkExt_12.vcxproj
index 435662b069..09040e945a 100644
--- a/protocols/GTalkExt/GTalkExt_12.vcxproj
+++ b/protocols/GTalkExt/GTalkExt_12.vcxproj
@@ -199,7 +199,6 @@
<ClInclude Include="src\options.h" />
<ClInclude Include="src\resources.h" />
<ClInclude Include="src\stdafx.h" />
- <ClInclude Include="src\targetver.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\settings.rc" />
diff --git a/protocols/GTalkExt/GTalkExt_12.vcxproj.filters b/protocols/GTalkExt/GTalkExt_12.vcxproj.filters
index f34094e47a..5aa7b25cad 100644
--- a/protocols/GTalkExt/GTalkExt_12.vcxproj.filters
+++ b/protocols/GTalkExt/GTalkExt_12.vcxproj.filters
@@ -71,9 +71,6 @@
<ClInclude Include="src\stdafx.h">
<Filter>Header Files</Filter>
</ClInclude>
- <ClInclude Include="src\targetver.h">
- <Filter>Header Files</Filter>
- </ClInclude>
<ClInclude Include="src\googletalk.h">
<Filter>Header Files</Filter>
</ClInclude>
diff --git a/protocols/GTalkExt/src/stdafx.h b/protocols/GTalkExt/src/stdafx.h
index 163db4c0c4..38bfff10e0 100644
--- a/protocols/GTalkExt/src/stdafx.h
+++ b/protocols/GTalkExt/src/stdafx.h
@@ -21,8 +21,6 @@
#pragma once
-#include "targetver.h"
-
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define _CRT_SECURE_NO_WARNINGS
diff --git a/protocols/GTalkExt/src/targetver.h b/protocols/GTalkExt/src/targetver.h
deleted file mode 100644
index 9446e301c8..0000000000
--- a/protocols/GTalkExt/src/targetver.h
+++ /dev/null
@@ -1,45 +0,0 @@
-//***************************************************************************************
-//
-// Google Extension plugin for the Miranda IM's Jabber protocol
-// Copyright (c) 2011 bems@jabber.org, George Hazan (ghazan@jabber.ru)
-//
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License
-// as published by the Free Software Foundation; either version 2
-// of the License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-//***************************************************************************************
-
-#pragma once
-
-// The following macros define the minimum required platform. The minimum required platform
-// is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
-// your application. The macros work by enabling all features available on platform versions up to and
-// including the version specified.
-
-// Modify the following defines if you have to target a platform prior to the ones specified below.
-// Refer to MSDN for the latest info on corresponding values for different platforms.
-#ifndef WINVER // Specifies that the minimum required platform is Windows Vista.
-#define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
-#endif
-
-#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
-#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
-#endif
-
-#ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
-#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
-#endif
-
-#ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
-#define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
-#endif