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.

118 lines
3.3 KiB

  1. // AppConfig.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 AppConfig.idl by adding the following
  17. // files to the Outputs.
  18. // AppConfig_p.c
  19. // dlldata.c
  20. // To build a separate proxy/stub DLL,
  21. // run nmake -f AppConfigps.mk in the project directory.
  22. #include "stdafx.h"
  23. #include "resource.h"
  24. #include <initguid.h>
  25. #include "AppConfig.h"
  26. #include "dlldatax.h"
  27. #include "AppConf_i.c"
  28. #include "IISAppConfig.h"
  29. #ifdef _MERGE_PROXYSTUB
  30. extern "C" HINSTANCE hProxyDll;
  31. #endif
  32. CComModule _Module;
  33. BEGIN_OBJECT_MAP(ObjectMap)
  34. OBJECT_ENTRY(CLSID_IISAppConfig, CIISAppConfig)
  35. END_OBJECT_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // DLL Entry Point
  38. extern "C"
  39. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  40. {
  41. lpReserved;
  42. #ifdef _MERGE_PROXYSTUB
  43. if (!PrxDllMain(hInstance, dwReason, lpReserved))
  44. return FALSE;
  45. #endif
  46. if (dwReason == DLL_PROCESS_ATTACH)
  47. {
  48. _Module.Init(ObjectMap, hInstance, &LIBID_APPCONFIGLib);
  49. DisableThreadLibraryCalls(hInstance);
  50. INITCOMMONCONTROLSEX iccx;
  51. iccx.dwSize = sizeof(iccx);
  52. iccx.dwICC = ICC_DATE_CLASSES | ICC_UPDOWN_CLASS;
  53. ::InitCommonControlsEx(&iccx);
  54. }
  55. else if (dwReason == DLL_PROCESS_DETACH)
  56. _Module.Term();
  57. return TRUE; // ok
  58. }
  59. /////////////////////////////////////////////////////////////////////////////
  60. // Used to determine whether the DLL can be unloaded by OLE
  61. STDAPI DllCanUnloadNow(void)
  62. {
  63. #ifdef _MERGE_PROXYSTUB
  64. if (PrxDllCanUnloadNow() != S_OK)
  65. return S_FALSE;
  66. #endif
  67. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // Returns a class factory to create an object of the requested type
  71. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  72. {
  73. #ifdef _MERGE_PROXYSTUB
  74. if (PrxDllGetClassObject(rclsid, riid, ppv) == S_OK)
  75. return S_OK;
  76. #endif
  77. return _Module.GetClassObject(rclsid, riid, ppv);
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // DllRegisterServer - Adds entries to the system registry
  81. STDAPI DllRegisterServer(void)
  82. {
  83. #ifdef _MERGE_PROXYSTUB
  84. HRESULT hRes = PrxDllRegisterServer();
  85. if (FAILED(hRes))
  86. return hRes;
  87. #endif
  88. // registers object, typelib and all interfaces in typelib
  89. return _Module.RegisterServer(TRUE);
  90. }
  91. /////////////////////////////////////////////////////////////////////////////
  92. // DllUnregisterServer - Removes entries from the system registry
  93. STDAPI DllUnregisterServer(void)
  94. {
  95. #ifdef _MERGE_PROXYSTUB
  96. PrxDllUnregisterServer();
  97. #endif
  98. return _Module.UnregisterServer(TRUE);
  99. }