ddd.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:2k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ddd.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. //      To build a separate proxy/stub DLL, 
  4. //      run nmake -f dddps.mk in the project directory.
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include <initguid.h>
  8. #include "ddd.h"
  9. #include "ddd_i.c"
  10. #include "fff.h"
  11. #include "rrr.h"
  12. CComModule _Module;
  13. BEGIN_OBJECT_MAP(ObjectMap)
  14. OBJECT_ENTRY(CLSID_fff, Cfff)
  15. OBJECT_ENTRY(CLSID_rrr, Crrr)
  16. END_OBJECT_MAP()
  17. /////////////////////////////////////////////////////////////////////////////
  18. // DLL Entry Point
  19. extern "C"
  20. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  21. {
  22.     if (dwReason == DLL_PROCESS_ATTACH)
  23.     {
  24.         _Module.Init(ObjectMap, hInstance, &LIBID_DDDLib);
  25.         DisableThreadLibraryCalls(hInstance);
  26.     }
  27.     else if (dwReason == DLL_PROCESS_DETACH)
  28.         _Module.Term();
  29.     return TRUE;    // ok
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Used to determine whether the DLL can be unloaded by OLE
  33. STDAPI DllCanUnloadNow(void)//判断组件是否能够卸载
  34. {
  35.     return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // Returns a class factory to create an object of the requested type
  39. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)//被CoCreateInstance方法调用
  40. {
  41.     return _Module.GetClassObject(rclsid, riid, ppv);
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // DllRegisterServer - Adds entries to the system registry
  45. STDAPI DllRegisterServer(void)//将组件的ID和名称的关联信息写入注册表
  46. {
  47.     // registers object, typelib and all interfaces in typelib
  48.     return _Module.RegisterServer(TRUE);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // DllUnregisterServer - Removes entries from the system registry
  52. STDAPI DllUnregisterServer(void)//将组件的ID和名称关联信息删除
  53. {
  54.     return _Module.UnregisterServer(TRUE);
  55. }