diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-18 21:36:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-18 21:36:53 +0000 |
commit | e328df9bdc816810545b91dccd52e7741e962dc0 (patch) | |
tree | 3f118077918773ba4b6d835c72ce7068c12ce496 /plugins/CountryFlags | |
parent | 5e4ecb158a9835d79536326835287d49f22d65f1 (diff) |
bunch of fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@57 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags')
-rw-r--r-- | plugins/CountryFlags/flags.h | 1 | ||||
-rw-r--r-- | plugins/CountryFlags/flags.vcxproj | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/plugins/CountryFlags/flags.h b/plugins/CountryFlags/flags.h index 98a28b88f4..79ec67d426 100644 --- a/plugins/CountryFlags/flags.h +++ b/plugins/CountryFlags/flags.h @@ -17,6 +17,7 @@ along with this program (Flags-License.txt); if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#define _CRT_SECURE_NO_WARNINGS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#define NONAMELESSUNION
diff --git a/plugins/CountryFlags/flags.vcxproj b/plugins/CountryFlags/flags.vcxproj index 4177b01a2e..e3dfa10e7f 100644 --- a/plugins/CountryFlags/flags.vcxproj +++ b/plugins/CountryFlags/flags.vcxproj @@ -91,7 +91,8 @@ <ImportLibrary>$(IntDir)$(TargetName).lib</ImportLibrary>
<BaseAddress>0x24200000</BaseAddress>
<AdditionalDependencies>comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
- <AdditionalOptions> /mapinfo:lines /mapinfo:lines </AdditionalOptions>
+ <AdditionalOptions>
+ </AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@@ -104,7 +105,7 @@ <SuppressStartupBanner>true</SuppressStartupBanner>
<WarningLevel>Level4</WarningLevel>
<AdditionalIncludeDirectories>../../include;../ExternalAPI;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
- <PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;_WINDOWS;_USRDLL;STRICT;ASSOCMGR_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;_WINDOWS;_USRDLL;STRICT;ASSOCMGR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<UndefinePreprocessorDefinitions>_MBCS;NO_STRICT;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
<BrowseInformation>true</BrowseInformation>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName).pch</PrecompiledHeaderOutputFile>
|