RNSO.cpp
资源名称:rnso.zip [点击查看]
上传用户:lianquan
上传日期:2007-01-02
资源大小:197k
文件大小:3k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // RNSO.cpp : Implementation of WinMain
- // Note: Proxy/Stub Information
- // To build a separate proxy/stub DLL,
- // run nmake -f RNSOps.mk in the project directory.
- #include "stdafx.h"
- #include "resource.h"
- #include "initguid.h"
- #include "RNSO.h"
- #include "RNSO_i.c"
- #include "GenericObserver.h" #include "Manager.h"
- LONG CExeModule::Unlock()
- {
- LONG l = CComModule::Unlock();
- if (l == 0)
- {
- #if _WIN32_WINNT >= 0x0400
- if (CoSuspendClassObjects() == S_OK)
- PostThreadMessage(dwThreadID, WM_QUIT, 0, 0);
- #else
- PostThreadMessage(dwThreadID, WM_QUIT, 0, 0);
- #endif
- }
- return l;
- }
- CExeModule _Module;
- BEGIN_OBJECT_MAP(ObjectMap)
- OBJECT_ENTRY(CLSID_GenericObserver, CGenericObserver)
- END_OBJECT_MAP()
- LPCTSTR FindOneOf(LPCTSTR p1, LPCTSTR p2)
- {
- while (*p1 != NULL)
- {
- LPCTSTR p = p2;
- while (*p != NULL)
- {
- if (*p1 == *p++)
- return p1+1;
- }
- p1++;
- }
- return NULL;
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- extern "C" int WINAPI _tWinMain(HINSTANCE hInstance,
- HINSTANCE /*hPrevInstance*/, LPTSTR lpCmdLine, int /*nShowCmd*/)
- {
- lpCmdLine = GetCommandLine(); //this line necessary for _ATL_MIN_CRT
- //HRESULT hRes = CoInitialize(NULL);
- HRESULT hRes = CoInitializeEx(NULL,COINIT_MULTITHREADED);
- // If you are running on NT 4.0 or higher you can use the following call
- // instead to make the EXE free threaded.
- // This means that calls come in on a random RPC thread
- // HRESULT hRes = CoInitializeEx(NULL, COINIT_MULTITHREADED);
- _ASSERTE(SUCCEEDED(hRes));
- _Module.Init(ObjectMap, hInstance);
- _Module.dwThreadID = GetCurrentThreadId();
- TCHAR szTokens[] = _T("-/");
- int nRet = 0;
- BOOL bRun = TRUE;
- LPCTSTR lpszToken = FindOneOf(lpCmdLine, szTokens);
- while (lpszToken != NULL)
- {
- if (lstrcmpi(lpszToken, _T("UnregServer"))==0)
- {
- _Module.UpdateRegistryFromResource(IDR_RNSO, FALSE);
- nRet = _Module.UnregisterServer();
- bRun = FALSE;
- break;
- }
- if (lstrcmpi(lpszToken, _T("RegServer"))==0)
- {
- _Module.UpdateRegistryFromResource(IDR_RNSO, TRUE);
- nRet = _Module.RegisterServer(TRUE);
- bRun = FALSE;
- break;
- }
- lpszToken = FindOneOf(lpszToken, szTokens);
- }
- if (bRun)
- {
- GenericManager::StartManager();
- hRes = _Module.RegisterClassObjects(CLSCTX_LOCAL_SERVER,
- REGCLS_MULTIPLEUSE);
- _ASSERTE(SUCCEEDED(hRes));
- MSG msg;
- while (GetMessage(&msg, 0, 0, 0))
- DispatchMessage(&msg);
- _Module.RevokeClassObjects();
- GenericManager::StopManager();
- }
- CoUninitialize();
- return nRet;
- }