Leaked source code of windows server 2003
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.

79 lines
2.0 KiB

  1. // IISSCOv50.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. // To build a separate proxy/stub DLL,
  4. // run nmake -f SCOTestps.mk in the project directory.
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include <initguid.h>
  8. #include "IISSCOv50.h"
  9. #include "IISSCOv50_i.c"
  10. #include "IISSCO50.h"
  11. CComModule _Module;
  12. BEGIN_OBJECT_MAP(ObjectMap)
  13. OBJECT_ENTRY(CLSID_IISSCO50, CIISSCO50)
  14. END_OBJECT_MAP()
  15. /////////////////////////////////////////////////////////////////////////////
  16. // DLL Entry Point
  17. extern "C"
  18. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  19. {
  20. if (dwReason == DLL_PROCESS_ATTACH)
  21. {
  22. _Module.Init(ObjectMap, hInstance, &LIBID_IISSCOV50Lib);
  23. DisableThreadLibraryCalls(hInstance);
  24. }
  25. else if (dwReason == DLL_PROCESS_DETACH)
  26. {
  27. _Module.Term();
  28. }
  29. return TRUE; // ok
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Used to determine whether the DLL can be unloaded by OLE
  33. STDAPI DllCanUnloadNow(void)
  34. {
  35. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // Returns a class factory to create an object of the requested type
  39. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  40. {
  41. return _Module.GetClassObject(rclsid, riid, ppv);
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // DllRegisterServer - Adds entries to the system registry
  45. STDAPI DllRegisterServer(void)
  46. {
  47. // registers object, typelib and all interfaces in typelib
  48. return _Module.RegisterServer(TRUE);
  49. //hr = _Module.RegisterServer(TRUE);
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // DllUnregisterServer - Removes entries from the system registry
  53. STDAPI DllUnregisterServer(void)
  54. {
  55. return _Module.UnregisterServer(TRUE);
  56. }