MYPROV.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // MyProv.cpp : Implementation of DLL Exports.
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1998 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. // Note: Proxy/Stub Information
  13. //      To build a separate proxy/stub DLL,
  14. //      run nmake -f MyProvps.mk in the project directory.
  15. #include "stdafx.h"
  16. #include "resource.h"
  17. #include "initguid.h"
  18. #include "MyProv.h"
  19. #include "MyProv_i.c"
  20. #include "MyProviderSess.h"
  21. #include "MyProviderDS.h"
  22. CComModule _Module;
  23. BEGIN_OBJECT_MAP(ObjectMap)
  24. OBJECT_ENTRY(CLSID_MyProvider, CMyProviderSource)
  25. END_OBJECT_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // DLL Entry Point
  28. extern "C"
  29. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  30. {
  31. if (dwReason == DLL_PROCESS_ATTACH)
  32. {
  33. _Module.Init(ObjectMap, hInstance);
  34. DisableThreadLibraryCalls(hInstance);
  35. }
  36. else if (dwReason == DLL_PROCESS_DETACH)
  37. _Module.Term();
  38. return TRUE;    // ok
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // Used to determine whether the DLL can be unloaded by OLE
  42. STDAPI DllCanUnloadNow(void)
  43. {
  44. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // Returns a class factory to create an object of the requested type
  48. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  49. {
  50. return _Module.GetClassObject(rclsid, riid, ppv);
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // DllRegisterServer - Adds entries to the system registry
  54. STDAPI DllRegisterServer(void)
  55. {
  56. // registers object, typelib and all interfaces in typelib
  57. return _Module.RegisterServer(TRUE);
  58. }
  59. /////////////////////////////////////////////////////////////////////////////
  60. // DllUnregisterServer - Removes entries from the system registry
  61. STDAPI DllUnregisterServer(void)
  62. {
  63. _Module.UnregisterServer();
  64. return S_OK;
  65. }