diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 08:35:58 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 08:35:58 +0000 |
commit | 96f125395e5a1ec213394fd22730f03b03e33cad (patch) | |
tree | 2dd47924c26987cd264cbe95df2859c2c20ffe3c /plugins/FTPFileYM | |
parent | 51c45c7b9c9ca4845c58c8b0d8f2342400f56f89 (diff) |
muuid standardization
git-svn-id: http://svn.miranda-ng.org/main/trunk@3353 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FTPFileYM')
-rw-r--r-- | plugins/FTPFileYM/src/common.h | 12 | ||||
-rw-r--r-- | plugins/FTPFileYM/src/ftpfile.cpp | 7 |
2 files changed, 3 insertions, 16 deletions
diff --git a/plugins/FTPFileYM/src/common.h b/plugins/FTPFileYM/src/common.h index 5e1ff74618..7c7c04d68f 100644 --- a/plugins/FTPFileYM/src/common.h +++ b/plugins/FTPFileYM/src/common.h @@ -102,18 +102,6 @@ using namespace std; #include "m_ftpfile.h"
#include "m_msg_buttonsbar.h"
-#if defined _WIN64
-#define MIID_FTPFILE { 0x6453cf27, 0xd111, 0x41f4, { 0xbe, 0xf5, 0xa8, 0xd8, 0x68, 0x8e, 0x44, 0xc6 } }
-#elif defined _UNICODE
-#define MIID_FTPFILE { 0x9502e511, 0x7e5d, 0x49a1, {0x8b, 0xa5, 0xb1, 0xae, 0xe7, 0xf, 0xa5, 0xbf } }
-#else
-#define MIID_FTPFILE { 0x64f80ef4, 0x856e, 0x4f27, { 0xb2, 0xa6, 0x47, 0x4a, 0x1, 0xff, 0x69, 0x83 } }
-#endif
-
-#ifndef SIZEOF
-#define SIZEOF(s) (sizeof(s) / sizeof((s)[0]))
-#endif
-
#ifndef FREE
#define FREE(X) if (X) { mir_free(X); X = NULL; }
#endif
diff --git a/plugins/FTPFileYM/src/ftpfile.cpp b/plugins/FTPFileYM/src/ftpfile.cpp index 2642fb49d5..5a7af8e2b7 100644 --- a/plugins/FTPFileYM/src/ftpfile.cpp +++ b/plugins/FTPFileYM/src/ftpfile.cpp @@ -49,8 +49,9 @@ static PLUGININFOEX pluginInfoEx = __AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
- UNICODE_AWARE,
- MIID_FTPFILE
+ UNICODE_AWARE,
+ // {9502E511-7E5D-49A1-8BA5-B1AEE70FA5BF}
+ {0x9502e511, 0x7e5d, 0x49a1, {0x8b, 0xa5, 0xb1, 0xae, 0xe7, 0xf, 0xa5, 0xbf}}
};
//------------ BASIC STAFF ------------//
@@ -66,8 +67,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfoEx;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_FTPFILE, MIID_LAST};
-
//------------ INIT FUNCTIONS ------------//
static IconItem iconList[] =
|