diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-02 21:21:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-02 21:21:45 +0000 |
commit | d2946eb5bb3692806bb67e6e8a8d981f0e599850 (patch) | |
tree | 55dc7a15199c69824aa1a4550a326369c9a372f5 /plugins/Watrack_MPD/src/init.c | |
parent | 53551a6153e66fff4b35eb92366b0d1be906d624 (diff) |
removal of the rest of __DATE__ and __TIME__
git-svn-id: http://svn.miranda-ng.org/main/trunk@1332 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack_MPD/src/init.c')
-rwxr-xr-x | plugins/Watrack_MPD/src/init.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/plugins/Watrack_MPD/src/init.c b/plugins/Watrack_MPD/src/init.c index 4d4f9eba29..ca3d9e71b0 100755 --- a/plugins/Watrack_MPD/src/init.c +++ b/plugins/Watrack_MPD/src/init.c @@ -16,7 +16,6 @@ #include "commonheaders.h" - #define PLUGIN_NAME "Watrack_MPD" HINSTANCE hInst; @@ -26,10 +25,9 @@ static int OnModulesLoaded(WPARAM wParam,LPARAM lParam); extern char *date(); extern int WaMpdOptInit(WPARAM wParam,LPARAM lParam); - PLUGININFOEX pluginInfo={ sizeof(PLUGININFOEX), - 0, + PLUGIN_NAME, PLUGIN_MAKE_VERSION(0,0,0,4), "Music Player Daemon support for watrack", "sss, others..", @@ -37,8 +35,7 @@ PLUGININFOEX pluginInfo={ "© 2009 sss, others...", "http://sss.chaoslab.ru:81/tracker/mim_plugs/", 1, //unicode - { 0x692e87d0, 0x6c71, 0x4cdc, { 0x9e, 0x36, 0x2b, 0x2d, 0x69, 0xfb, 0xdc, 0x4c } } - + { 0x692e87d0, 0x6c71, 0x4cdc, { 0x9e, 0x36, 0x2b, 0x2d, 0x69, 0xfb, 0xdc, 0x4c } } }; BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) @@ -49,15 +46,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) { - { - static char plugname[52]; - strcpy(plugname, PLUGIN_NAME" ["); - strcat(plugname, date()); - strcat(plugname, " "); - strcat(plugname, __TIME__); - strcat(plugname, "]"); - pluginInfo.shortName = plugname; - } return &pluginInfo; } |