From d7b4175e4ec7b916e22c59cf2e292c8265df1838 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 8 Aug 2015 19:57:35 +0000 Subject: stdcrypt: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14864 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/stdcrypt/src/Rijndael.cpp | 2 +- src/core/stdcrypt/src/commonheaders.cpp | 2 - src/core/stdcrypt/src/commonheaders.h | 76 --------- src/core/stdcrypt/src/encrypt.cpp | 2 +- src/core/stdcrypt/src/main.cpp | 2 +- src/core/stdcrypt/src/stdafx.cxx | 1 + src/core/stdcrypt/src/stdafx.h | 76 +++++++++ src/core/stdcrypt/src/utils.cpp | 2 +- src/core/stdcrypt/stdcrypt.vcxproj | 33 ++++ src/core/stdcrypt/stdcrypt.vcxproj.filters | 4 + src/core/stdcrypt/stdcrypt_10.vcxproj | 229 ------------------------- src/core/stdcrypt/stdcrypt_10.vcxproj.filters | 59 ------- src/core/stdcrypt/stdcrypt_12.vcxproj | 232 -------------------------- src/core/stdcrypt/stdcrypt_12.vcxproj.filters | 59 ------- src/core/stdcrypt/stdcrypt_14.vcxproj | 232 -------------------------- src/core/stdcrypt/stdcrypt_14.vcxproj.filters | 59 ------- 16 files changed, 118 insertions(+), 952 deletions(-) delete mode 100644 src/core/stdcrypt/src/commonheaders.cpp delete mode 100644 src/core/stdcrypt/src/commonheaders.h create mode 100644 src/core/stdcrypt/src/stdafx.cxx create mode 100644 src/core/stdcrypt/src/stdafx.h create mode 100644 src/core/stdcrypt/stdcrypt.vcxproj create mode 100644 src/core/stdcrypt/stdcrypt.vcxproj.filters delete mode 100644 src/core/stdcrypt/stdcrypt_10.vcxproj delete mode 100644 src/core/stdcrypt/stdcrypt_10.vcxproj.filters delete mode 100644 src/core/stdcrypt/stdcrypt_12.vcxproj delete mode 100644 src/core/stdcrypt/stdcrypt_12.vcxproj.filters delete mode 100644 src/core/stdcrypt/stdcrypt_14.vcxproj delete mode 100644 src/core/stdcrypt/stdcrypt_14.vcxproj.filters (limited to 'src') diff --git a/src/core/stdcrypt/src/Rijndael.cpp b/src/core/stdcrypt/src/Rijndael.cpp index e721c3e36d..752fde4fbd 100644 --- a/src/core/stdcrypt/src/Rijndael.cpp +++ b/src/core/stdcrypt/src/Rijndael.cpp @@ -1,5 +1,5 @@ -#include "commonheaders.h" +#include "stdafx.h" static const int sm_alog[256] = { diff --git a/src/core/stdcrypt/src/commonheaders.cpp b/src/core/stdcrypt/src/commonheaders.cpp deleted file mode 100644 index 95b2201163..0000000000 --- a/src/core/stdcrypt/src/commonheaders.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include "commonheaders.h" - diff --git a/src/core/stdcrypt/src/commonheaders.h b/src/core/stdcrypt/src/commonheaders.h deleted file mode 100644 index 32c6f26034..0000000000 --- a/src/core/stdcrypt/src/commonheaders.h +++ /dev/null @@ -1,76 +0,0 @@ -/* - -Miranda NG: the free IM client for Microsoft* Windows* - -Copyright (ñ) 2012-15 Miranda NG project (http://miranda-ng.org), -Copyright (c) 2000-12 Miranda IM project, -all portions of this codebase are copyrighted to the people -listed in contributors.txt. - -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. -*/ - -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "version.h" - -#include "../../mir_app/src/resource.h" - -#include "stdcrypt.h" - -extern HINSTANCE hInst; - -bool getRandomBytes(BYTE *buf, size_t bufLen); -void slow_hash(const void *buf, size_t bufLen, BYTE *tmpHash); diff --git a/src/core/stdcrypt/src/encrypt.cpp b/src/core/stdcrypt/src/encrypt.cpp index e2c9c1ec99..451459f8e8 100644 --- a/src/core/stdcrypt/src/encrypt.cpp +++ b/src/core/stdcrypt/src/encrypt.cpp @@ -21,7 +21,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "commonheaders.h" +#include "stdafx.h" #include "..\..\..\libs\zlib\src\zlib.h" diff --git a/src/core/stdcrypt/src/main.cpp b/src/core/stdcrypt/src/main.cpp index 5c2d8b3084..a9a5ded4e3 100644 --- a/src/core/stdcrypt/src/main.cpp +++ b/src/core/stdcrypt/src/main.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "commonheaders.h" +#include "stdafx.h" int LoadEncryptionModule(void); diff --git a/src/core/stdcrypt/src/stdafx.cxx b/src/core/stdcrypt/src/stdafx.cxx new file mode 100644 index 0000000000..a27b824da7 --- /dev/null +++ b/src/core/stdcrypt/src/stdafx.cxx @@ -0,0 +1 @@ +#include "stdafx.h" diff --git a/src/core/stdcrypt/src/stdafx.h b/src/core/stdcrypt/src/stdafx.h new file mode 100644 index 0000000000..32c6f26034 --- /dev/null +++ b/src/core/stdcrypt/src/stdafx.h @@ -0,0 +1,76 @@ +/* + +Miranda NG: the free IM client for Microsoft* Windows* + +Copyright (ñ) 2012-15 Miranda NG project (http://miranda-ng.org), +Copyright (c) 2000-12 Miranda IM project, +all portions of this codebase are copyrighted to the people +listed in contributors.txt. + +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. +*/ + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "version.h" + +#include "../../mir_app/src/resource.h" + +#include "stdcrypt.h" + +extern HINSTANCE hInst; + +bool getRandomBytes(BYTE *buf, size_t bufLen); +void slow_hash(const void *buf, size_t bufLen, BYTE *tmpHash); diff --git a/src/core/stdcrypt/src/utils.cpp b/src/core/stdcrypt/src/utils.cpp index 64a429e547..3136dd7e7e 100644 --- a/src/core/stdcrypt/src/utils.cpp +++ b/src/core/stdcrypt/src/utils.cpp @@ -21,7 +21,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "commonheaders.h" +#include "stdafx.h" bool getRandomBytes(BYTE *buf, size_t bufLen) { diff --git a/src/core/stdcrypt/stdcrypt.vcxproj b/src/core/stdcrypt/stdcrypt.vcxproj new file mode 100644 index 0000000000..5d81adb0bb --- /dev/null +++ b/src/core/stdcrypt/stdcrypt.vcxproj @@ -0,0 +1,33 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + StdCrypt + {8D0F60DE-DB07-49FD-8E1F-0DE558BE6DE3} + + + + + + + {e2a369cd-eda3-414f-8ad0-e732cd7ee68c} + + + \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt.vcxproj.filters b/src/core/stdcrypt/stdcrypt.vcxproj.filters new file mode 100644 index 0000000000..e39f86d5d6 --- /dev/null +++ b/src/core/stdcrypt/stdcrypt.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_10.vcxproj b/src/core/stdcrypt/stdcrypt_10.vcxproj deleted file mode 100644 index 57030c801a..0000000000 --- a/src/core/stdcrypt/stdcrypt_10.vcxproj +++ /dev/null @@ -1,229 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdCrypt - {8D0F60DE-DB07-49FD-8E1F-0DE558BE6DE3} - - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - true - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - Create - - - - - - - - - - - - - - - - - - - - {e2a369cd-eda3-414f-8ad0-e732cd7ee68c} - - - - - - \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_10.vcxproj.filters b/src/core/stdcrypt/stdcrypt_10.vcxproj.filters deleted file mode 100644 index d1ef9ab89a..0000000000 --- a/src/core/stdcrypt/stdcrypt_10.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {5c074c9e-6c66-4233-bbd3-a50170fccf47} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {e30af2c4-42d4-4342-8eb9-2dbca157c6bb} - h;hpp;hxx;hm;inl - - - {9208a050-ffae-47fa-bc98-4ca4f79d37d7} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_12.vcxproj b/src/core/stdcrypt/stdcrypt_12.vcxproj deleted file mode 100644 index 67f4bed69f..0000000000 --- a/src/core/stdcrypt/stdcrypt_12.vcxproj +++ /dev/null @@ -1,232 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdCrypt - {8D0F60DE-DB07-49FD-8E1F-0DE558BE6DE3} - - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - false - - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - Create - - - - - - - - - - - - - - - - - - - - {e2a369cd-eda3-414f-8ad0-e732cd7ee68c} - - - - - - \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_12.vcxproj.filters b/src/core/stdcrypt/stdcrypt_12.vcxproj.filters deleted file mode 100644 index d1ef9ab89a..0000000000 --- a/src/core/stdcrypt/stdcrypt_12.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {5c074c9e-6c66-4233-bbd3-a50170fccf47} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {e30af2c4-42d4-4342-8eb9-2dbca157c6bb} - h;hpp;hxx;hm;inl - - - {9208a050-ffae-47fa-bc98-4ca4f79d37d7} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_14.vcxproj b/src/core/stdcrypt/stdcrypt_14.vcxproj deleted file mode 100644 index 7086a5f727..0000000000 --- a/src/core/stdcrypt/stdcrypt_14.vcxproj +++ /dev/null @@ -1,232 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdCrypt - {8D0F60DE-DB07-49FD-8E1F-0DE558BE6DE3} - - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - false - - - - - Full - OnlyExplicitInline - Size - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - true - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - true - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - Disabled - ..\..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;ADDCONTACTPLUS_EXPORTS;%(PreprocessorDefinitions) - false - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - commonheaders.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include\msapi;..\..\..\include - - - ws2_32.lib;comctl32.lib;%(AdditionalDependencies) - true - 0x3ae00000 - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - Create - - - - - - - - - - - - - - - - - - - - {e2a369cd-eda3-414f-8ad0-e732cd7ee68c} - - - - - - \ No newline at end of file diff --git a/src/core/stdcrypt/stdcrypt_14.vcxproj.filters b/src/core/stdcrypt/stdcrypt_14.vcxproj.filters deleted file mode 100644 index d1ef9ab89a..0000000000 --- a/src/core/stdcrypt/stdcrypt_14.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {5c074c9e-6c66-4233-bbd3-a50170fccf47} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {e30af2c4-42d4-4342-8eb9-2dbca157c6bb} - h;hpp;hxx;hm;inl - - - {9208a050-ffae-47fa-bc98-4ca4f79d37d7} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file -- cgit v1.2.3