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

Windows编程

开发平台:

Visual C++

  1. // pipe.cpp : Implementation of DLL Exports.
  2. // Note: Proxy/Stub Information
  3. // To build a separate proxy/stub DLL, 
  4. // run nmake -f pipeps.mk in the project directory.
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include "initguid.h"
  8. #include "pipe.h"
  9. #include "pipe_i.c"
  10. #include <initguid.h>
  11. #include "PipeIt.h"
  12. CComModule _Module;
  13. BEGIN_OBJECT_MAP(ObjectMap)
  14. OBJECT_ENTRY(CLSID_PipeIt, CPipeIt)
  15. END_OBJECT_MAP()
  16. class CPipeApp : public CWinApp
  17. {
  18. public:
  19. virtual BOOL InitInstance();
  20. virtual int ExitInstance();
  21. };
  22. CPipeApp theApp;
  23. BOOL CPipeApp::InitInstance()
  24. {
  25. _Module.Init(ObjectMap, m_hInstance);
  26. return CWinApp::InitInstance();
  27. }
  28. int CPipeApp::ExitInstance()
  29. {
  30. _Module.Term();
  31. return CWinApp::ExitInstance();
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // Used to determine whether the DLL can be unloaded by OLE
  35. STDAPI DllCanUnloadNow(void)
  36. {
  37. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  38. return (AfxDllCanUnloadNow()==S_OK && _Module.GetLockCount()==0) ? S_OK : S_FALSE;
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // Returns a class factory to create an object of the requested type
  42. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  43. {
  44. return _Module.GetClassObject(rclsid, riid, ppv);
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // DllRegisterServer - Adds entries to the system registry
  48. STDAPI DllRegisterServer(void)
  49. {
  50. // registers object, typelib and all interfaces in typelib
  51. return _Module.RegisterServer(TRUE);
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // DllUnregisterServer - Removes entries from the system registry
  55. STDAPI DllUnregisterServer(void)
  56. {
  57. _Module.UnregisterServer();
  58. return S_OK;
  59. }