From cda00412ae794fb120caf6bf62a83ba6a8848704 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 1 Aug 2015 21:38:29 +0000 Subject: yapp: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14806 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/YAPP/src/common.h | 75 ------------ plugins/YAPP/src/icons.cpp | 2 +- plugins/YAPP/src/message_pump.cpp | 2 +- plugins/YAPP/src/notify_imp.cpp | 2 +- plugins/YAPP/src/options.cpp | 2 +- plugins/YAPP/src/popwin.cpp | 2 +- plugins/YAPP/src/services.cpp | 2 +- plugins/YAPP/src/stdafx.cpp | 18 --- plugins/YAPP/src/stdafx.cxx | 18 +++ plugins/YAPP/src/stdafx.h | 73 +++++++++++ plugins/YAPP/src/yapp.cpp | 2 +- plugins/YAPP/src/yapp_history.cpp | 2 +- plugins/YAPP/src/yapp_history_dlg.cpp | 2 +- plugins/YAPP/yapp.vcxproj | 28 +++++ plugins/YAPP/yapp.vcxproj.filters | 4 + plugins/YAPP/yapp_10.vcxproj | 220 --------------------------------- plugins/YAPP/yapp_10.vcxproj.filters | 103 ---------------- plugins/YAPP/yapp_12.vcxproj | 223 ---------------------------------- plugins/YAPP/yapp_12.vcxproj.filters | 103 ---------------- plugins/YAPP/yapp_14.vcxproj | 223 ---------------------------------- plugins/YAPP/yapp_14.vcxproj.filters | 103 ---------------- 21 files changed, 132 insertions(+), 1077 deletions(-) delete mode 100644 plugins/YAPP/src/common.h delete mode 100644 plugins/YAPP/src/stdafx.cpp create mode 100644 plugins/YAPP/src/stdafx.cxx create mode 100644 plugins/YAPP/src/stdafx.h create mode 100644 plugins/YAPP/yapp.vcxproj create mode 100644 plugins/YAPP/yapp.vcxproj.filters delete mode 100644 plugins/YAPP/yapp_10.vcxproj delete mode 100644 plugins/YAPP/yapp_10.vcxproj.filters delete mode 100644 plugins/YAPP/yapp_12.vcxproj delete mode 100644 plugins/YAPP/yapp_12.vcxproj.filters delete mode 100644 plugins/YAPP/yapp_14.vcxproj delete mode 100644 plugins/YAPP/yapp_14.vcxproj.filters (limited to 'plugins') diff --git a/plugins/YAPP/src/common.h b/plugins/YAPP/src/common.h deleted file mode 100644 index f1305489f0..0000000000 --- a/plugins/YAPP/src/common.h +++ /dev/null @@ -1,75 +0,0 @@ -// stdafx.h : include file for standard system include files, -// or project specific include files that are used frequently, but -// are changed infrequently -// - -#pragma once - -#define _CRT_SECURE_NO_WARNINGS - -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers - -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include //need this for special renderers - -#include "version.h" -#include "message_pump.h" -#include "options.h" -#include "popwin.h" -#include "notify.h" -#include "services.h" -#include "resource.h" -#include "yapp_history.h" -#include "icons.h" - -#define MODULE "YAPP" - -extern HMODULE hInst; -extern bool bShutdown; - -extern HFONT hFontFirstLine, hFontSecondLine, hFontTime; -extern COLORREF colFirstLine, colSecondLine, colBg, colTime, colBorder, colSidebar, colTitleUnderline; - -extern MNOTIFYLINK *notifyLink; - -// work around a bug in neweventnotify, possibly httpserver -// ignore the address passed to the 'get plugin data' service -extern bool ignore_gpd_passed_addy; - -// win32 defines for mingw version of windows headers :( -#ifndef LVM_SORTITEMSEX -#define LVM_SORTITEMSEX (LVM_FIRST + 81) - -typedef int (CALLBACK *PFNLVCOMPARE)(LPARAM, LPARAM, LPARAM); - -#define ListView_SortItemsEx(hwndLV, _pfnCompare, _lPrm) \ - (BOOL)SendMessage((hwndLV), LVM_SORTITEMSEX, (WPARAM)(LPARAM)(_lPrm), (LPARAM)(PFNLVCOMPARE)(_pfnCompare)) -#endif - -#define PDF_UNICODE 0x0001 -#define PDF_ICOLIB 0x0002 - -#define PDF_TCHAR PDF_UNICODE - -void ShowPopup(PopupData &pd_in); \ No newline at end of file diff --git a/plugins/YAPP/src/icons.cpp b/plugins/YAPP/src/icons.cpp index 6c48b95d0c..f9364cf47e 100644 --- a/plugins/YAPP/src/icons.cpp +++ b/plugins/YAPP/src/icons.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" static IconItem iconList[] = { diff --git a/plugins/YAPP/src/message_pump.cpp b/plugins/YAPP/src/message_pump.cpp index 24b034001c..34ff5cc468 100644 --- a/plugins/YAPP/src/message_pump.cpp +++ b/plugins/YAPP/src/message_pump.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" unsigned message_pump_thread_id = 0; int num_popups = 0; diff --git a/plugins/YAPP/src/notify_imp.cpp b/plugins/YAPP/src/notify_imp.cpp index 1af80729c7..aad282b1b4 100644 --- a/plugins/YAPP/src/notify_imp.cpp +++ b/plugins/YAPP/src/notify_imp.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" HANDLE hhkShow=0, hhkUpdate=0, hhkRemove=0; diff --git a/plugins/YAPP/src/options.cpp b/plugins/YAPP/src/options.cpp index 6ebd9ce7f7..90284668a1 100644 --- a/plugins/YAPP/src/options.cpp +++ b/plugins/YAPP/src/options.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" Options options; diff --git a/plugins/YAPP/src/popwin.cpp b/plugins/YAPP/src/popwin.cpp index 4229911018..01ba681cfe 100644 --- a/plugins/YAPP/src/popwin.cpp +++ b/plugins/YAPP/src/popwin.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" #define ID_CLOSETIMER 0x0101 #define ID_MOVETIMER 0x0102 diff --git a/plugins/YAPP/src/services.cpp b/plugins/YAPP/src/services.cpp index e80b50203a..64363b252c 100644 --- a/plugins/YAPP/src/services.cpp +++ b/plugins/YAPP/src/services.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" extern HANDLE hTTButton; extern HGENMENU hMenuRoot, hMenuItem; diff --git a/plugins/YAPP/src/stdafx.cpp b/plugins/YAPP/src/stdafx.cpp deleted file mode 100644 index c5fe5abaad..0000000000 --- a/plugins/YAPP/src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) - -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 version 2 -of the License. - -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, see . -*/ - -#include "common.h" \ No newline at end of file diff --git a/plugins/YAPP/src/stdafx.cxx b/plugins/YAPP/src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/YAPP/src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) + +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 version 2 +of the License. + +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, see . +*/ + +#include "stdafx.h" \ No newline at end of file diff --git a/plugins/YAPP/src/stdafx.h b/plugins/YAPP/src/stdafx.h new file mode 100644 index 0000000000..26ec420cc1 --- /dev/null +++ b/plugins/YAPP/src/stdafx.h @@ -0,0 +1,73 @@ +// stdafx.h : include file for standard system include files, +// or project specific include files that are used frequently, but +// are changed infrequently +// + +#pragma once + +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include //need this for special renderers + +#include "version.h" +#include "message_pump.h" +#include "options.h" +#include "popwin.h" +#include "notify.h" +#include "services.h" +#include "resource.h" +#include "yapp_history.h" +#include "icons.h" + +#define MODULE "YAPP" + +extern HMODULE hInst; +extern bool bShutdown; + +extern HFONT hFontFirstLine, hFontSecondLine, hFontTime; +extern COLORREF colFirstLine, colSecondLine, colBg, colTime, colBorder, colSidebar, colTitleUnderline; + +extern MNOTIFYLINK *notifyLink; + +// work around a bug in neweventnotify, possibly httpserver +// ignore the address passed to the 'get plugin data' service +extern bool ignore_gpd_passed_addy; + +// win32 defines for mingw version of windows headers :( +#ifndef LVM_SORTITEMSEX +#define LVM_SORTITEMSEX (LVM_FIRST + 81) + +typedef int (CALLBACK *PFNLVCOMPARE)(LPARAM, LPARAM, LPARAM); + +#define ListView_SortItemsEx(hwndLV, _pfnCompare, _lPrm) \ + (BOOL)SendMessage((hwndLV), LVM_SORTITEMSEX, (WPARAM)(LPARAM)(_lPrm), (LPARAM)(PFNLVCOMPARE)(_pfnCompare)) +#endif + +#define PDF_UNICODE 0x0001 +#define PDF_ICOLIB 0x0002 + +#define PDF_TCHAR PDF_UNICODE + +void ShowPopup(PopupData &pd_in); \ No newline at end of file diff --git a/plugins/YAPP/src/yapp.cpp b/plugins/YAPP/src/yapp.cpp index 0db8062c1c..5d20b88e62 100644 --- a/plugins/YAPP/src/yapp.cpp +++ b/plugins/YAPP/src/yapp.cpp @@ -1,7 +1,7 @@ // popups2.cpp : Defines the entry point for the DLL application. // -#include "common.h" +#include "stdafx.h" HMODULE hInst = 0; bool bShutdown = false; diff --git a/plugins/YAPP/src/yapp_history.cpp b/plugins/YAPP/src/yapp_history.cpp index 0b1d534cb0..08ff8f747a 100644 --- a/plugins/YAPP/src/yapp_history.cpp +++ b/plugins/YAPP/src/yapp_history.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" PopupHistoryList::PopupHistoryList(int renderer) { diff --git a/plugins/YAPP/src/yapp_history_dlg.cpp b/plugins/YAPP/src/yapp_history_dlg.cpp index 5f6a95b7c8..640e5c5020 100644 --- a/plugins/YAPP/src/yapp_history_dlg.cpp +++ b/plugins/YAPP/src/yapp_history_dlg.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "stdafx.h" //************ Some helper resize stuff ****************** diff --git a/plugins/YAPP/yapp.vcxproj b/plugins/YAPP/yapp.vcxproj new file mode 100644 index 0000000000..e82a8ddfa2 --- /dev/null +++ b/plugins/YAPP/yapp.vcxproj @@ -0,0 +1,28 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + YAPP + {B6FC188B-8E54-4197-9444-8BADE9AA75E2} + + + + + \ No newline at end of file diff --git a/plugins/YAPP/yapp.vcxproj.filters b/plugins/YAPP/yapp.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/YAPP/yapp.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/plugins/YAPP/yapp_10.vcxproj b/plugins/YAPP/yapp_10.vcxproj deleted file mode 100644 index 6bb58fdfa7..0000000000 --- a/plugins/YAPP/yapp_10.vcxproj +++ /dev/null @@ -1,220 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - YAPP - {B6FC188B-8E54-4197-9444-8BADE9AA75E2} - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - DynamicLibrary - true - Unicode - - - DynamicLibrary - Unicode - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - common.h - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - false - Fast - common.h - Level3 - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Level3 - Use - common.h - false - - - true - true - $(IntDir)$(TargetName).lib - true - Windows - false - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - EnableFastChecks - MultiThreadedDebugDLL - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Disabled - Level3 - Use - common.h - false - - - $(IntDir)$(TargetName).lib - false - true - Windows - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/YAPP/yapp_10.vcxproj.filters b/plugins/YAPP/yapp_10.vcxproj.filters deleted file mode 100644 index c0edf12f79..0000000000 --- a/plugins/YAPP/yapp_10.vcxproj.filters +++ /dev/null @@ -1,103 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3c29ebac-bd66-463e-a010-9a1a520fa214} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Resource Files\Icons - - - Resource Files\Icons - - - Resource Files\Icons - - - \ No newline at end of file diff --git a/plugins/YAPP/yapp_12.vcxproj b/plugins/YAPP/yapp_12.vcxproj deleted file mode 100644 index ce4c1e373e..0000000000 --- a/plugins/YAPP/yapp_12.vcxproj +++ /dev/null @@ -1,223 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - YAPP - {B6FC188B-8E54-4197-9444-8BADE9AA75E2} - - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - true - Unicode - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - common.h - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - false - Fast - common.h - Level3 - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Level3 - Use - common.h - false - - - true - true - $(IntDir)$(TargetName).lib - true - Windows - false - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - EnableFastChecks - MultiThreadedDebugDLL - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Disabled - Level3 - Use - common.h - false - - - $(IntDir)$(TargetName).lib - false - true - Windows - $(ProfileDir)..\..\bin12\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/YAPP/yapp_12.vcxproj.filters b/plugins/YAPP/yapp_12.vcxproj.filters deleted file mode 100644 index 63b9f23fbe..0000000000 --- a/plugins/YAPP/yapp_12.vcxproj.filters +++ /dev/null @@ -1,103 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {ce1fbb37-fa42-41db-a785-4323d308edf9} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Resource Files\Icons - - - Resource Files\Icons - - - Resource Files\Icons - - - \ No newline at end of file diff --git a/plugins/YAPP/yapp_14.vcxproj b/plugins/YAPP/yapp_14.vcxproj deleted file mode 100644 index 04cacd432e..0000000000 --- a/plugins/YAPP/yapp_14.vcxproj +++ /dev/null @@ -1,223 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - YAPP - {B6FC188B-8E54-4197-9444-8BADE9AA75E2} - - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - true - Unicode - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - common.h - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - false - Fast - common.h - Level3 - 4996;%(DisableSpecificWarnings) - Use - false - - - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Level3 - Use - common.h - false - - - true - true - $(IntDir)$(TargetName).lib - true - Windows - false - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - EnableFastChecks - MultiThreadedDebugDLL - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Disabled - Level3 - Use - common.h - false - - - $(IntDir)$(TargetName).lib - false - true - Windows - $(ProfileDir)..\..\bin14\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/YAPP/yapp_14.vcxproj.filters b/plugins/YAPP/yapp_14.vcxproj.filters deleted file mode 100644 index 63b9f23fbe..0000000000 --- a/plugins/YAPP/yapp_14.vcxproj.filters +++ /dev/null @@ -1,103 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {ce1fbb37-fa42-41db-a785-4323d308edf9} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Resource Files\Icons - - - Resource Files\Icons - - - Resource Files\Icons - - - \ No newline at end of file -- cgit v1.2.3