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

ActiveX/DCOM/ATL

开发平台:

Visual C++

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