diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 09:00:15 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 09:00:15 +0000 |
commit | 1b430673df6b613839e5e33425e332f1cce4b733 (patch) | |
tree | 7ff68b0f6e7b4dfeade8ca855e7f5d04276f51e2 | |
parent | c89ad0f76b7fce81f08f7ea13db869e333a5a4fe (diff) |
muuid standardization
git-svn-id: http://svn.miranda-ng.org/main/trunk@3355 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rwxr-xr-x | plugins/Watrack_MPD/src/init.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/plugins/Watrack_MPD/src/init.c b/plugins/Watrack_MPD/src/init.c index 930f734c62..bfd7199856 100755 --- a/plugins/Watrack_MPD/src/init.c +++ b/plugins/Watrack_MPD/src/init.c @@ -34,13 +34,14 @@ PLUGININFOEX pluginInfo={ "sss123next@list.ru", "© 2009 sss, others...", "http://sss.chaoslab.ru:81/tracker/mim_plugs/", - 1, //unicode - { 0x692e87d0, 0x6c71, 0x4cdc, { 0x9e, 0x36, 0x2b, 0x2d, 0x69, 0xfb, 0xdc, 0x4c } } + UNICODE_AWARE, + // 692E87D0-6C71-4CDC-9E36-2B69FBDC4C + {0x692e87d0, 0x6c71, 0x4cdc, {0x9e, 0x36, 0x2b, 0x2d, 0x69, 0xfb, 0xdc, 0x4c}} }; -BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { - hInst=hinstDLL; + hInst = hinstDLL; return TRUE; } @@ -49,12 +50,6 @@ __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) return &pluginInfo; } -static const MUUID interfaces[] = {MIID_SERVICEMODE, MIID_LAST}; -__declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) -{ - return interfaces; -} - int __declspec(dllexport) Load() { mir_getLP(&pluginInfo); |