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

Windows编程

开发平台:

Visual C++

  1. // ATLGdiWorld.cpp : Implementation of DLL Exports.
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12. // Note: Proxy/Stub Information
  13. //      To build a separate proxy/stub DLL,
  14. //      run nmake -f ATLGdiWorldps.mk in the project directory.
  15. #include "stdafx.h"
  16. #include "resource.h"
  17. #include "initguid.h"
  18. #include "ATLGdiWorld.h"
  19. #include "ATLGdiWorld_i.c"
  20. #include "AtlTangramGdiVisual.h"
  21. #include "AtlGdiWorldImpl.h"
  22. #include "AtlEvent_i.h"
  23. CComModule _Module;
  24. BEGIN_OBJECT_MAP(ObjectMap)
  25. OBJECT_ENTRY(CLSID_AtlTangramGdiVisual, CAtlTangramGdiVisual)
  26. OBJECT_ENTRY(CLSID_AtlGdiWorld, CAtlGdiWorld)
  27. END_OBJECT_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // DLL Entry Point
  30. extern "C"
  31. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  32. {
  33. if (dwReason == DLL_PROCESS_ATTACH)
  34. {
  35. _Module.Init(ObjectMap, hInstance);
  36. DisableThreadLibraryCalls(hInstance);
  37. }
  38. else if (dwReason == DLL_PROCESS_DETACH)
  39. _Module.Term();
  40. return TRUE;    // ok
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // Used to determine whether the DLL can be unloaded by OLE
  44. STDAPI DllCanUnloadNow(void)
  45. {
  46. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // Returns a class factory to create an object of the requested type
  50. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  51. {
  52. return _Module.GetClassObject(rclsid, riid, ppv);
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // DllRegisterServer - Adds entries to the system registry
  56. STDAPI DllRegisterServer(void)
  57. {
  58. // registers object, typelib and all interfaces in typelib
  59. return _Module.RegisterServer(TRUE);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // DllUnregisterServer - Removes entries from the system registry
  63. STDAPI DllUnregisterServer(void)
  64. {
  65. _Module.UnregisterServer();
  66. return S_OK;
  67. }