summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-08-28 22:12:35 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-08-28 22:12:35 +0000
commit2380b83dfbac557f1938999908fee22029f2e2b3 (patch)
tree1c1d0a01ed6bcf4816e9fdc65aeb37de096fa4d0 /plugins
parent13410343d9a3c99d43abe0ab0eef25984172c088 (diff)
Toaster - warning message on usupported systems fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15075 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Toaster/Toaster.vcxproj6
-rw-r--r--plugins/Toaster/src/main.cpp2
2 files changed, 6 insertions, 2 deletions
diff --git a/plugins/Toaster/Toaster.vcxproj b/plugins/Toaster/Toaster.vcxproj
index cb3a8d0753..bb52591c27 100644
--- a/plugins/Toaster/Toaster.vcxproj
+++ b/plugins/Toaster/Toaster.vcxproj
@@ -49,7 +49,11 @@
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
- <AdditionalDependencies>runtimeobject.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <AdditionalDependencies>delayimp.lib;runtimeobject.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <DelayLoadDLLs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs)</DelayLoadDLLs>
+ <DelayLoadDLLs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs)</DelayLoadDLLs>
+ <DelayLoadDLLs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs)</DelayLoadDLLs>
+ <DelayLoadDLLs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL;API-MS-WIN-CORE-WINRT-L1-1-0.DLL;%(DelayLoadDLLs)</DelayLoadDLLs>
</Link>
<ClCompile>
<RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MultiThreadedDebugDLL</RuntimeLibrary>
diff --git a/plugins/Toaster/src/main.cpp b/plugins/Toaster/src/main.cpp
index 009c2caea3..15bef82d99 100644
--- a/plugins/Toaster/src/main.cpp
+++ b/plugins/Toaster/src/main.cpp
@@ -30,7 +30,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
if (!IsWinVer8Plus())
{
- MessageBox(NULL, TranslateT("This plugin only supports Windows 8 or higher"), _T(MODULE), MB_OK | MB_ICONERROR);
+ MessageBox(NULL, TranslateT("This plugin requires Windows 8 or higher"), _T(MODULE), MB_OK | MB_ICONERROR);
return NULL;
}
return &pluginInfo;