com_ex.cpp
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:2k
源码类别:

中间件编程

开发平台:

Visual C++

  1. // com_ex.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. //      To build a separate proxy/stub DLL, 
  4. //      run nmake -f com_exps.mk in the project directory.
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include <initguid.h>
  8. #include "com_ex.h"
  9. #include "com_ex_i.c"
  10. #include "contour.h"
  11. CComModule _Module;
  12. BEGIN_OBJECT_MAP(ObjectMap)
  13. OBJECT_ENTRY(CLSID_contour, Ccontour)
  14. END_OBJECT_MAP()
  15. class CCom_exApp : public CWinApp
  16. {
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CCom_exApp)
  21. public:
  22.     virtual BOOL InitInstance();
  23.     virtual int ExitInstance();
  24. //}}AFX_VIRTUAL
  25. //{{AFX_MSG(CCom_exApp)
  26. // NOTE - the ClassWizard will add and remove member functions here.
  27. //    DO NOT EDIT what you see in these blocks of generated code !
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. BEGIN_MESSAGE_MAP(CCom_exApp, CWinApp)
  32. //{{AFX_MSG_MAP(CCom_exApp)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //    DO NOT EDIT what you see in these blocks of generated code!
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. CCom_exApp theApp;
  38. BOOL CCom_exApp::InitInstance()
  39. {
  40.     _Module.Init(ObjectMap, m_hInstance, &LIBID_COM_EXLib);
  41.     return CWinApp::InitInstance();
  42. }
  43. int CCom_exApp::ExitInstance()
  44. {
  45.     _Module.Term();
  46.     return CWinApp::ExitInstance();
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // Used to determine whether the DLL can be unloaded by OLE
  50. STDAPI DllCanUnloadNow(void)
  51. {
  52.     AFX_MANAGE_STATE(AfxGetStaticModuleState());
  53.     return (AfxDllCanUnloadNow()==S_OK && _Module.GetLockCount()==0) ? S_OK : S_FALSE;
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // Returns a class factory to create an object of the requested type
  57. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  58. {
  59.     return _Module.GetClassObject(rclsid, riid, ppv);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // DllRegisterServer - Adds entries to the system registry
  63. STDAPI DllRegisterServer(void)
  64. {
  65.     // registers object, typelib and all interfaces in typelib
  66.     return _Module.RegisterServer(TRUE);
  67. }
  68. /////////////////////////////////////////////////////////////////////////////
  69. // DllUnregisterServer - Removes entries from the system registry
  70. STDAPI DllUnregisterServer(void)
  71. {
  72.     return _Module.UnregisterServer(TRUE);
  73. }