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.

119 lines
3.1 KiB

  1. //////////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // AppManDispatch.cpp : Implementation of DLL Exports.
  4. //
  5. // History :
  6. //
  7. // 05/06/1999 luish Created
  8. // 4/19/2000 RichGr LoadDebugRuntime Registry setting delegates calls to Debug dll.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////////////////////
  11. // Note: Proxy/Stub Information
  12. // To build a separate proxy/stub DLL,
  13. // run nmake -f AppManDispatchps.mk in the project directory.
  14. #include "stdafx.h"
  15. #include "resource.h"
  16. #include <initguid.h>
  17. #include "AppManDispatch.h"
  18. #include "AppManDispatch_i.c"
  19. #include "AppEntry.h"
  20. #include "AppManager.h"
  21. #include "AppManDebug.h"
  22. //
  23. // To flag as DBG_APPMANDP
  24. //
  25. #ifdef DBG_MODULE
  26. #undef DBG_MODULE
  27. #endif
  28. #define DBG_MODULE DBG_APPMANDP
  29. CComModule _Module;
  30. BEGIN_OBJECT_MAP(ObjectMap)
  31. OBJECT_ENTRY(CLSID_AppEntry, CAppEntry)
  32. OBJECT_ENTRY(CLSID_AppManager, CAppManager)
  33. END_OBJECT_MAP()
  34. //////////////////////////////////////////////////////////////////////////////////////////////
  35. //
  36. // DLL Entry Point
  37. //
  38. //////////////////////////////////////////////////////////////////////////////////////////////
  39. extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  40. {
  41. FUNCTION(" DllMain()");
  42. if (dwReason == DLL_PROCESS_ATTACH)
  43. {
  44. _Module.Init(ObjectMap, hInstance, &LIBID_APPMANDISPATCHLib);
  45. DisableThreadLibraryCalls(hInstance);
  46. }
  47. else
  48. if (dwReason == DLL_PROCESS_DETACH)
  49. {
  50. _Module.Term();
  51. }
  52. return TRUE;
  53. }
  54. //////////////////////////////////////////////////////////////////////////////////////////////
  55. //
  56. // Used to determine whether the DLL can be unloaded by OLE
  57. //
  58. //////////////////////////////////////////////////////////////////////////////////////////////
  59. STDAPI DllCanUnloadNow(void)
  60. {
  61. FUNCTION(" DllCanUnloadNow()");
  62. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  63. }
  64. //////////////////////////////////////////////////////////////////////////////////////////////
  65. //
  66. // Returns a class factory to create an object of the requested type
  67. //
  68. //////////////////////////////////////////////////////////////////////////////////////////////
  69. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  70. {
  71. FUNCTION(" DllGetClassObject()");
  72. return _Module.GetClassObject(rclsid, riid, ppv);
  73. }
  74. //////////////////////////////////////////////////////////////////////////////////////////////
  75. //
  76. // DllRegisterServer - Adds entries to the system registry
  77. //
  78. //////////////////////////////////////////////////////////////////////////////////////////////
  79. STDAPI DllRegisterServer(void)
  80. {
  81. FUNCTION(" DllRegisterServer()");
  82. return _Module.RegisterServer(TRUE);
  83. }
  84. //////////////////////////////////////////////////////////////////////////////////////////////
  85. //
  86. // DllUnregisterServer - Removes entries from the system registry
  87. //
  88. //////////////////////////////////////////////////////////////////////////////////////////////
  89. STDAPI DllUnregisterServer(void)
  90. {
  91. FUNCTION(" DllUnregisterServer()");
  92. return _Module.UnregisterServer(TRUE);
  93. }