home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / commap / commap.cpp < prev    next >
C/C++ Source or Header  |  1998-04-02  |  3KB  |  83 lines

  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.  
  18. // Note: Proxy/Stub Information
  19. //      To build a separate proxy/stub DLL, 
  20. //      run nmake -f COMMapps.mak in the project directory.
  21.  
  22. #include "premap.h"
  23. #include "mapres.h"
  24. #include "Outer.h"
  25.  
  26. CComModule _Module;
  27.  
  28. BEGIN_OBJECT_MAP(ObjectMap)
  29.     OBJECT_ENTRY(__uuidof(CoOuter), COuter)
  30.     OBJECT_ENTRY(__uuidof(CoChain), CChain)
  31. END_OBJECT_MAP()
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // DLL Entry Point
  35.  
  36. extern "C"
  37. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  38. {
  39.     if (dwReason == DLL_PROCESS_ATTACH)
  40.     {
  41.         _Module.Init(ObjectMap, hInstance);
  42.         DisableThreadLibraryCalls(hInstance);
  43.     }
  44.     else if (dwReason == DLL_PROCESS_DETACH)
  45.         _Module.Term();
  46.     return TRUE;    // ok
  47. }
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. // Used to determine whether the DLL can be unloaded by OLE
  51.  
  52. STDAPI DllCanUnloadNow(void)
  53. {
  54.     return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // Returns a class factory to create an object of the requested type
  59.  
  60. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  61. {
  62.     return _Module.GetClassObject(rclsid, riid, ppv);
  63. }
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66. // DllRegisterServer - Adds entries to the system registry
  67.  
  68. STDAPI DllRegisterServer(void)
  69. {
  70.     // registers object, typelib and all interfaces in typelib
  71.     return _Module.RegisterServer(TRUE);
  72. }
  73.  
  74. /////////////////////////////////////////////////////////////////////////////
  75. // DllUnregisterServer - Removes entries from the system registry
  76.  
  77. STDAPI DllUnregisterServer(void)
  78. {
  79.     _Module.UnregisterServer();
  80.     return S_OK;
  81. }
  82.  
  83.