comhook.cpp
上传用户:kittypts
上传日期:2018-02-11
资源大小:241k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2. Windows Live Messenger Plugin Demo
  3. Copyright (C) 2008  Hern醤 Di Pietro
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  14. /*****************************************************************************/
  15. #include "wlmplugin.h"
  16. // ---------------------------------------------------------------------------
  17. void Handle_CoRegisterClassObject (NktHandlerParams * hp)
  18. {
  19. HRESULT hr;
  20. WCHAR wszBuf [256];
  21. CLSID clsid = **(CLSID**)PARAMETER_INDEX(0);
  22. IUnknown* pUnk = *(IUnknown**) PARAMETER_INDEX(1);
  23. IClassFactory* pIcf = NULL;
  24. if (SUCCEEDED((HRESULT)WINAPI_RETVAL))
  25. {
  26. StringFromGUID(clsid, wszBuf);
  27. _OutputDebugString (L"S_OK, Handling CoRegisterClassObject for CLSID %s", wszBuf);
  28. // check CLSID ...
  29. if (clsid == MSNMessenger::CLSID_Messenger)
  30. {
  31. OutputDebugString (L"Handling CoRegisterClassObject for CLSID_Messengern");
  32. // get ptr to class factory
  33. hr = pUnk->QueryInterface(IID_IClassFactory, (void**)&pIcf);
  34. if (SUCCEEDED(hr))
  35. {
  36. hr = pIcf->CreateInstance (NULL, MSNMessenger::IID_IMSNMessenger, 
  37. (void**) &g_wlmIfaces.pIMsn);
  38. _ASSERTE(hr == S_OK);
  39. }
  40. pUnk->Release();
  41. // attach hook to handle MSAA events
  42. g_wlmTopWindow.hwevh = SetWinEventHook(EVENT_OBJECT_FOCUS, 
  43. EVENT_OBJECT_STATECHANGE, GetModuleHandle(0), &HandleWinEvent, GetCurrentProcessId(), NULL, 
  44. WINEVENT_INCONTEXT);
  45. }
  46. }
  47. //-------------------------------------------------------------------------------------------