Messenger Wont Exit
From: Leo Havmøller (leh_at_nospamrtx.dk)
Date: 04/29/04
- Previous message: Jonathan Kay [MVP]: "Re: Messenger 4.7 Can't Be Closed From System Tray??"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 29 Apr 2004 09:57:18 +0200
If I have used the IMessenger API, Messenger wont exit (shows that pesky
"There are other applications currently using features" dialog).
I have boiled it down to the following console sample, which only calls
CoCreateInstance() and Release().
AFAIK everything is released and cleaned up, but the application must be
closed before messenger will exit.
What am I missing?
#include <windows.h>
#include <objbase.h>
#include <stdio.h>
#include <conio.h>
const GUID IID_IMessenger =
{0xd50c3186,0x0f89,0x48f8,{0xb2,0x04,0x36,0x04,0x62,0x9d,0xee,0x10}};
const GUID CLSID_Messenger =
{0xb69003b3,0xc55e,0x4b48,{0x83,0x6c,0xbc,0x59,0x46,0xfc,0x3b,0x28}};
int main(int argc, char* argv[])
{
HRESULT hr;
IUnknown* pMsgr;
CoInitialize(0);
hr = CoCreateInstance(CLSID_Messenger, NULL, CLSCTX_ALL, IID_IMessenger,
(void**)&pMsgr);
printf("CreateInstance=%u=0x%X\n", hr, hr);
if (pMsgr)
{
pMsgr->Release();
}
CoUninitialize();
printf("Try to exit messenger now.\n");
_getch();
return 0;
}
Leo Havmøller.
- Previous message: Jonathan Kay [MVP]: "Re: Messenger 4.7 Can't Be Closed From System Tray??"
- Messages sorted by: [ date ] [ thread ]