Evp.cpp
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:2k
源码类别:

CA认证

开发平台:

Visual C++

  1. // Evp.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. //      To build a separate proxy/stub DLL, 
  4. //      run nmake -f Evpps.mk in the project directory.
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include <initguid.h>
  8. #include "Evp.h"
  9. #include "Evp_i.c"
  10. #include "EvpShell.h"
  11. CComModule _Module;
  12. BEGIN_OBJECT_MAP(ObjectMap)
  13. OBJECT_ENTRY(CLSID_EvpShell, CEvpShell)
  14. END_OBJECT_MAP()
  15. /////////////////////////////////////////////////////////////////////////////
  16. // DLL Entry Point
  17. extern "C"
  18. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  19. {
  20.     if (dwReason == DLL_PROCESS_ATTACH)
  21.     {
  22.         _Module.Init(ObjectMap, hInstance, &LIBID_EVPLib);
  23.         DisableThreadLibraryCalls(hInstance);
  24.     }
  25.     else if (dwReason == DLL_PROCESS_DETACH)
  26.         _Module.Term();
  27.     return TRUE;    // ok
  28. }
  29. /////////////////////////////////////////////////////////////////////////////
  30. // Used to determine whether the DLL can be unloaded by OLE
  31. STDAPI DllCanUnloadNow(void)
  32. {
  33.     return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Returns a class factory to create an object of the requested type
  37. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  38. {
  39.     return _Module.GetClassObject(rclsid, riid, ppv);
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // DllRegisterServer - Adds entries to the system registry
  43. //在资源管理里面去掉生产类型库
  44. //RegisterServer - FALSE
  45. //UnregisterServer - FALSE
  46. //这样作可以直接删除DLL
  47. STDAPI DllRegisterServer(void)
  48. {
  49.     // registers object, typelib and all interfaces in typelib
  50.     return _Module.RegisterServer(FALSE);
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // DllUnregisterServer - Removes entries from the system registry
  54. STDAPI DllUnregisterServer(void)
  55. {
  56.     return _Module.UnregisterServer(FALSE);
  57. }