diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2011-03-31 09:02:52 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2011-03-31 09:02:52 +0000 |
commit | b16b45e533093289c78fd9885c017450627747f0 (patch) | |
tree | f512f1ab3cd62d83700ce4ef6f0dbed98b5fc707 /metacontacts/meta_main.c | |
parent | 99fd1c8f1a4c3047080e4f8552face442195b499 (diff) |
Translation fixes and other minor stuff.
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@592 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'metacontacts/meta_main.c')
-rw-r--r-- | metacontacts/meta_main.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/metacontacts/meta_main.c b/metacontacts/meta_main.c index 5115c5b..7554992 100644 --- a/metacontacts/meta_main.c +++ b/metacontacts/meta_main.c @@ -108,8 +108,6 @@ PLUGININFOEX pluginInfo={ HINSTANCE hInstance; //!< Global reference to the application
PLUGINLINK *pluginLink; //!< Link between Miranda and this plugin
-HANDLE metaMainThread; //!< Duplicate of thread handle
-
/** Called by Miranda to get the information associated to this plugin.
* It only returns the PLUGININFO structure, without any test on the version
* @param mirandaVersion The version of the application calling this function
@@ -147,7 +145,6 @@ __declspec(dllexport)int Unload(void) {
// see also meta_services.c, Meta_PreShutdown
Meta_CloseHandles();
- CloseHandle( metaMainThread );
//MessageBox(0, "Unload complete", "MC", MB_OK);
return 0;
}
@@ -169,7 +166,6 @@ int __declspec(dllexport)Load(PLUGINLINK *link) DBVARIANT dbv;
pluginLink=link;
- DuplicateHandle( GetCurrentProcess(), GetCurrentThread(), GetCurrentProcess(), &metaMainThread, 0, FALSE, DUPLICATE_SAME_ACCESS );
mir_getMMI(&mmi);
|