summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/CmdLine/CmdLine_11.vcxproj3
-rw-r--r--plugins/CmdLine/CmdLine_11.vcxproj.filters3
-rw-r--r--plugins/CmdLine/src/CmdLine.cpp17
-rw-r--r--plugins/CmdLine/src/commonheaders.h3
4 files changed, 5 insertions, 21 deletions
diff --git a/plugins/CmdLine/CmdLine_11.vcxproj b/plugins/CmdLine/CmdLine_11.vcxproj
index 39dc237f1b..c02cedc80e 100644
--- a/plugins/CmdLine/CmdLine_11.vcxproj
+++ b/plugins/CmdLine/CmdLine_11.vcxproj
@@ -211,9 +211,6 @@
<ItemGroup>
<ResourceCompile Include="res\version.rc" />
</ItemGroup>
- <ItemGroup>
- <None Include="docs\CmdLine_readme.txt" />
- </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/plugins/CmdLine/CmdLine_11.vcxproj.filters b/plugins/CmdLine/CmdLine_11.vcxproj.filters
index 0fd31faa14..9331c95495 100644
--- a/plugins/CmdLine/CmdLine_11.vcxproj.filters
+++ b/plugins/CmdLine/CmdLine_11.vcxproj.filters
@@ -74,7 +74,4 @@
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
- <ItemGroup>
- <None Include="docs\CmdLine_readme.txt" />
- </ItemGroup>
</Project> \ No newline at end of file
diff --git a/plugins/CmdLine/src/CmdLine.cpp b/plugins/CmdLine/src/CmdLine.cpp
index ae044469d2..58e672274e 100644
--- a/plugins/CmdLine/src/CmdLine.cpp
+++ b/plugins/CmdLine/src/CmdLine.cpp
@@ -33,25 +33,23 @@ PLUGININFOEX pluginInfo = {
__AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
- UNICODE_AWARE, //unicode aware
- {0x2f1a117c, 0x3c1b, 0x4c01, {0x89, 0xea, 0x6d, 0x8f, 0xd8, 0x5a, 0x9b, 0x4c}} //{2f1a117c-3c1b-4c01-89ea-6d8fd85a9b4c}
-}; //not used
+ UNICODE_AWARE,
+ // {2f1a117c-3c1b-4c01-89ea-6d8fd85a9b4c}
+ {0x2f1a117c, 0x3c1b, 0x4c01, {0x89, 0xea, 0x6d, 0x8f, 0xd8, 0x5a, 0x9b, 0x4c}}
+};
extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_CMDLINE, MIID_LAST};
-
extern "C" int __declspec(dllexport) Load(void)
{
mir_getLP(&pluginInfo);
-// InitServices();
if (InitServer())
{
- MessageBox(0, "Could not initialize CmdLine plugin property", "Error", MB_ICONEXCLAMATION | MB_OK);
+ MessageBox(0, TranslateT("Could not initialize CmdLine plugin property"), TranslateT("Error"), MB_ICONEXCLAMATION | MB_OK);
}
HookEvents();
@@ -73,10 +71,5 @@ extern "C" int __declspec(dllexport) Unload()
bool WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInstance = hinstDLL;
- if (fdwReason == DLL_PROCESS_ATTACH)
- {
- DisableThreadLibraryCalls(hinstDLL);
- }
-
return TRUE;
} \ No newline at end of file
diff --git a/plugins/CmdLine/src/commonheaders.h b/plugins/CmdLine/src/commonheaders.h
index b7a332c9d6..0359097b5c 100644
--- a/plugins/CmdLine/src/commonheaders.h
+++ b/plugins/CmdLine/src/commonheaders.h
@@ -21,11 +21,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef M_CMDLINE_COMMONHEADERS_H
#define M_CMDLINE_COMMONHEADERS_H
-#define MIRANDA_VER 0x0A00
#define _CRT_SECURE_NO_WARNINGS
-#define MIID_CMDLINE {0xcf8d9633, 0x7744, 0x4a5c, {0xb4, 0x8c, 0x2b, 0xd6, 0x36, 0xa4, 0x6c, 0xde}}
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>