Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.2 KiB

  1. // CertObj.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. // To merge the proxy/stub code into the object DLL, add the file
  4. // dlldatax.c to the project. Make sure precompiled headers
  5. // are turned off for this file, and add _MERGE_PROXYSTUB to the
  6. // defines for the project.
  7. //
  8. // If you are not running WinNT4.0 or Win95 with DCOM, then you
  9. // need to remove the following define from dlldatax.c
  10. // #define _WIN32_WINNT 0x0400
  11. //
  12. // Further, if you are running MIDL without /Oicf switch, you also
  13. // need to remove the following define from dlldatax.c.
  14. // #define USE_STUBLESS_PROXY
  15. //
  16. // Modify the custom build rule for CertObj.idl by adding the following
  17. // files to the Outputs.
  18. // CertObj_p.c
  19. // dlldata.c
  20. // To build a separate proxy/stub DLL,
  21. // run nmake -f CertObjps.mk in the project directory.
  22. #include "stdafx.h"
  23. #include "resource.h"
  24. #include <initguid.h>
  25. #include "CertObj.h"
  26. #include "dlldatax.h"
  27. #include "CertObj_i.c"
  28. #include "common.h"
  29. #include "IISCertObj.h"
  30. #ifdef _MERGE_PROXYSTUB
  31. extern "C" HINSTANCE hProxyDll;
  32. #endif
  33. CComModule _Module;
  34. BEGIN_OBJECT_MAP(ObjectMap)
  35. OBJECT_ENTRY(CLSID_IISCertObj, CIISCertObj)
  36. END_OBJECT_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // DLL Entry Point
  39. extern "C"
  40. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  41. {
  42. lpReserved;
  43. #ifdef _MERGE_PROXYSTUB
  44. if (!PrxDllMain(hInstance, dwReason, lpReserved))
  45. return FALSE;
  46. #endif
  47. if (dwReason == DLL_PROCESS_ATTACH)
  48. {
  49. _Module.Init(ObjectMap, hInstance, &LIBID_CERTOBJLib);
  50. DisableThreadLibraryCalls(hInstance);
  51. }
  52. else if (dwReason == DLL_PROCESS_DETACH)
  53. _Module.Term();
  54. return TRUE; // ok
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // Used to determine whether the DLL can be unloaded by OLE
  58. STDAPI DllCanUnloadNow(void)
  59. {
  60. #ifdef _MERGE_PROXYSTUB
  61. if (PrxDllCanUnloadNow() != S_OK)
  62. return S_FALSE;
  63. #endif
  64. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  65. }
  66. /////////////////////////////////////////////////////////////////////////////
  67. // Returns a class factory to create an object of the requested type
  68. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  69. {
  70. #ifdef _MERGE_PROXYSTUB
  71. if (PrxDllGetClassObject(rclsid, riid, ppv) == S_OK)
  72. return S_OK;
  73. #endif
  74. return _Module.GetClassObject(rclsid, riid, ppv);
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. // DllRegisterServer - Adds entries to the system registry
  78. STDAPI DllRegisterServer(void)
  79. {
  80. #ifdef _MERGE_PROXYSTUB
  81. HRESULT hRes = PrxDllRegisterServer();
  82. if (FAILED(hRes))
  83. return hRes;
  84. #endif
  85. // registers object, typelib and all interfaces in typelib
  86. return _Module.RegisterServer(TRUE);
  87. }
  88. /////////////////////////////////////////////////////////////////////////////
  89. // DllUnregisterServer - Removes entries from the system registry
  90. STDAPI DllUnregisterServer(void)
  91. {
  92. #ifdef _MERGE_PROXYSTUB
  93. PrxDllUnregisterServer();
  94. #endif
  95. return _Module.UnregisterServer(TRUE);
  96. }