diff options
Diffstat (limited to 'plugins/UserGuide/src')
-rw-r--r-- | plugins/UserGuide/src/Version.h | 14 | ||||
-rw-r--r-- | plugins/UserGuide/src/commonheaders.h | 7 | ||||
-rw-r--r-- | plugins/UserGuide/src/main.cpp | 32 | ||||
-rw-r--r-- | plugins/UserGuide/src/stdafx.cpp | 18 |
4 files changed, 50 insertions, 21 deletions
diff --git a/plugins/UserGuide/src/Version.h b/plugins/UserGuide/src/Version.h new file mode 100644 index 0000000000..7ceb9027ff --- /dev/null +++ b/plugins/UserGuide/src/Version.h @@ -0,0 +1,14 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 1
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+
+#define __PLUGIN_NAME "User guide"
+#define __FILENAME "UserGuide.dll"
+#define __DESCRIPTION "This plug-in adds the main menu item used to view miranda-im pack user guide."
+#define __AUTHOR "Yasnovidyashii"
+#define __AUTHOREMAIL "yasnovidyashii@gmail.com"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2009 Mikhail Yuriev"
diff --git a/plugins/UserGuide/src/commonheaders.h b/plugins/UserGuide/src/commonheaders.h index cf71412494..03ce9e5ec0 100644 --- a/plugins/UserGuide/src/commonheaders.h +++ b/plugins/UserGuide/src/commonheaders.h @@ -1,12 +1,11 @@ #define _CRT_SECURE_NO_WARNINGS
-#define MIRANDA_VER 0x0A00
-
#include <windows.h>
+
#include <newpluginapi.h>
#include <m_langpack.h>
-#include <m_system.h>
#include <m_database.h>
#include <m_clist.h>
#include <m_skin.h>
-#include <m_utils.h>
+
+#include "Version.h"
diff --git a/plugins/UserGuide/src/main.cpp b/plugins/UserGuide/src/main.cpp index 1e99ce017f..5650084b91 100644 --- a/plugins/UserGuide/src/main.cpp +++ b/plugins/UserGuide/src/main.cpp @@ -2,24 +2,24 @@ HINSTANCE hInst;
-HANDLE hModulesLoaded, hShowGuide;
+HANDLE hShowGuide;
int hLangpack;
-PLUGININFOEX pluginInfo={
+PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "User Guide Plugin",
- PLUGIN_MAKE_VERSION(0,0,0,1),
- "This plug-in adds the main menu item used to view miranda-im pack user guide.",
- "Yasnovidyashii",
- "yasnovidyashii@gmail.com",
- "© 2009 Mikhail Yuriev",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- {0x297ec1e7, 0x41b7, 0x41f9, { 0xbb, 0x91, 0xef, 0xa9, 0x50, 0x28, 0xf1, 0x6c }} //297ec1e7-41b7-41f9-bb91-efa95028f16c
-
+ // 297EC1E7-41B7-41F9-BB91-EFA95028F16C
+ {0x297ec1e7, 0x41b7, 0x41f9, {0xbb, 0x91, 0xef, 0xa9, 0x50, 0x28, 0xf1, 0x6c}}
};
-static INT_PTR ShowGuideFile(WPARAM wParam,LPARAM lParam)
+static INT_PTR ShowGuideFile(WPARAM wParam, LPARAM lParam)
{
DBVARIANT dbv = {0};
int iRes;
@@ -78,7 +78,7 @@ static INT_PTR ShowGuideFile(WPARAM wParam,LPARAM lParam) return 0;
}
-int ModulesLoaded(WPARAM wParam,LPARAM lParam)
+int ModulesLoaded(WPARAM wParam, LPARAM lParam)
{
hShowGuide = CreateServiceFunction("UserGuide/ShowGuide", ShowGuideFile);
@@ -93,7 +93,7 @@ int ModulesLoaded(WPARAM wParam,LPARAM lParam) return 0;
}
-BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
return TRUE;
@@ -107,15 +107,13 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda extern "C" __declspec(dllexport) int Load(void)
{
-
mir_getLP(&pluginInfo);
- hModulesLoaded = HookEvent(ME_SYSTEM_MODULESLOADED,ModulesLoaded);
+ HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded);
return 0;
}
extern "C" __declspec(dllexport) int Unload(void)
{
- UnhookEvent(hModulesLoaded);
DestroyServiceFunction(hShowGuide);
return 0;
}
\ No newline at end of file diff --git a/plugins/UserGuide/src/stdafx.cpp b/plugins/UserGuide/src/stdafx.cpp new file mode 100644 index 0000000000..e7e41dae3c --- /dev/null +++ b/plugins/UserGuide/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012-13 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 <http://www.gnu.org/licenses/>.
+*/
+
+#include "commonheaders.h"
\ No newline at end of file |