diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-06 19:46:34 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-06 19:46:34 +0000 |
commit | e70263fa09e2b16cd0ab8d45c6cf16e5b9788944 (patch) | |
tree | d3831df3ca36dbc28bc4cfb98a4fa897deb71e95 /plugins/Alarms/alarms.cpp | |
parent | 3dfe76ebba2cc8264d5548db3446587fd08f032e (diff) |
fixed plugin info
plusified AssocMgr plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@334 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Alarms/alarms.cpp')
-rw-r--r-- | plugins/Alarms/alarms.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/plugins/Alarms/alarms.cpp b/plugins/Alarms/alarms.cpp index 626b917178..79cea6c27f 100644 --- a/plugins/Alarms/alarms.cpp +++ b/plugins/Alarms/alarms.cpp @@ -33,13 +33,13 @@ WNDPROC old_clist_wndproc; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "Alarms",
- PLUGIN_MAKE_VERSION(0,4,0,5),
- "Set once-off, daily, weekly and weekday alarms.",
- "Scott Ellis",
- "mail@scottellis.com.au",
- "© 2005 Scott Ellis",
- "http://www.scottellis.com.au",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE, //not transient
0, //doesn't replace anything built-in
{ 0x4dd7762b, 0xd612, 0x4f84, { 0xaa, 0x86, 0x6, 0x8f, 0x17, 0x85, 0x9b, 0x6d } } // {4DD7762B-D612-4f84-AA86-068F17859B6D}
@@ -62,8 +62,6 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) return interfaces;
}
-
-
static int CALLBACK PopupDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message) {
|