COMMAP.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // COMMap.cpp : Implementation of DLL Exports.
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. //
  13. // You will need the NT SUR Beta 2 SDK or VC 4.2 in order to build this 
  14. // project.  This is because you will need MIDL 3.00.15 or higher and new
  15. // headers and libs.  If you have VC 4.2 installed, then everything should
  16. // already be configured correctly.
  17. // Note: Proxy/Stub Information
  18. //      To build a separate proxy/stub DLL, 
  19. //      run nmake -f COMMapps.mak in the project directory.
  20. #include "premap.h"
  21. #include "mapres.h"
  22. #include "Outer.h"
  23. CComModule _Module;
  24. BEGIN_OBJECT_MAP(ObjectMap)
  25.     OBJECT_ENTRY(__uuidof(CoOuter), COuter)
  26.     OBJECT_ENTRY(__uuidof(CoChain), CChain)
  27. END_OBJECT_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // DLL Entry Point
  30. extern "C"
  31. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  32. {
  33.     if (dwReason == DLL_PROCESS_ATTACH)
  34.     {
  35.         _Module.Init(ObjectMap, hInstance);
  36.         DisableThreadLibraryCalls(hInstance);
  37.     }
  38.     else if (dwReason == DLL_PROCESS_DETACH)
  39.         _Module.Term();
  40.     return TRUE;    // ok
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // Used to determine whether the DLL can be unloaded by OLE
  44. STDAPI DllCanUnloadNow(void)
  45. {
  46.     return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // Returns a class factory to create an object of the requested type
  50. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  51. {
  52.     return _Module.GetClassObject(rclsid, riid, ppv);
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // DllRegisterServer - Adds entries to the system registry
  56. STDAPI DllRegisterServer(void)
  57. {
  58.     // registers object, typelib and all interfaces in typelib
  59.     return _Module.RegisterServer(TRUE);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // DllUnregisterServer - Removes entries from the system registry
  63. STDAPI DllUnregisterServer(void)
  64. {
  65.     _Module.UnregisterServer();
  66.     return S_OK;
  67. }