diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 08:45:11 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 08:45:11 +0000 |
commit | c89ad0f76b7fce81f08f7ea13db869e333a5a4fe (patch) | |
tree | 98854ef74c01a2a52fe59b901129cb71ae26a54c /plugins/SecureIM/src | |
parent | 96f125395e5a1ec213394fd22730f03b03e33cad (diff) |
muuid standardization
git-svn-id: http://svn.miranda-ng.org/main/trunk@3354 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src')
-rw-r--r-- | plugins/SecureIM/src/commonheaders.cpp | 5 | ||||
-rw-r--r-- | plugins/SecureIM/src/commonheaders.h | 2 | ||||
-rw-r--r-- | plugins/SecureIM/src/main.cpp | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/plugins/SecureIM/src/commonheaders.cpp b/plugins/SecureIM/src/commonheaders.cpp index 7567ec2522..fa384b3492 100644 --- a/plugins/SecureIM/src/commonheaders.cpp +++ b/plugins/SecureIM/src/commonheaders.cpp @@ -34,8 +34,9 @@ PLUGININFOEX pluginInfoEx = { "Johell@ifrance.com, baloo@bk.ru",
"© 2003 Johell, © 2005-09 Baloo",
"http://miranda-ng.org/",
- 0,
- MIID_SECUREIM
+ UNICODE_AWARE,
+ //1B2A39E5-E2F6-494D-958D-1808FD110DD5
+ {0x1B2A39E5, 0xE2F6, 0x494D, {0x95, 0x8D, 0x18, 0x08, 0xFD, 0x11, 0x0D, 0xD5}}
};
LPSTR myDBGetString(HANDLE hContact,const char *szModule,const char *szSetting)
diff --git a/plugins/SecureIM/src/commonheaders.h b/plugins/SecureIM/src/commonheaders.h index 8328d39e83..886e0ed9cc 100644 --- a/plugins/SecureIM/src/commonheaders.h +++ b/plugins/SecureIM/src/commonheaders.h @@ -132,8 +132,6 @@ extern int TEMP_SIZE; extern HINSTANCE g_hInst, g_hIconInst;
extern PLUGININFOEX pluginInfoEx;
-#define MIID_SECUREIM {0x1B2A39E5, 0xE2F6, 0x494D, { 0x95, 0x8D, 0x18, 0x08, 0xFD, 0x11, 0x0D, 0xD5 }} //1B2A39E5-E2F6-494D-958D-1808FD110DD5
-
#define PREF_METANODB 0x2000 //!< Flag to indicate message should not be added to db by filter when sending
#define PREF_SIMNOMETA 0x4000 //!< Flag to indicate message should not be inspected by filter on metacontact
diff --git a/plugins/SecureIM/src/main.cpp b/plugins/SecureIM/src/main.cpp index 12eb96ed0e..a1f8a91f02 100644 --- a/plugins/SecureIM/src/main.cpp +++ b/plugins/SecureIM/src/main.cpp @@ -11,8 +11,6 @@ BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID) { return TRUE;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_SECUREIM, MIID_LAST};
-
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfoEx;
|