home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap15 / baz.cpp next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  2.1 KB  |  83 lines

  1. // baz.cpp : Implementation of DLL Exports.
  2.  
  3. // You will need the NT SUR Beta 2 SDK or VC 4.2 in order to build this 
  4. // project.  This is because you will need MIDL 3.00.15 or higher and new
  5. // headers and libs.  If you have VC 4.2 installed, then everything should
  6. // already be configured correctly.
  7.  
  8. // Note: Proxy/Stub Information
  9. //        To build a separate proxy/stub DLL, 
  10. //        run nmake -f bazps.mak in the project directory.
  11.  
  12. #include "stdafx.h"
  13. #include "resource.h"
  14. #include "initguid.h"
  15. #include "baz.h"
  16. #include "Baz1.h"
  17.  
  18. #define IID_DEFINED
  19. #include "baz_i.c"
  20.  
  21. CComModule _Module;
  22.  
  23. BEGIN_OBJECT_MAP(ObjectMap)
  24.     OBJECT_ENTRY(CLSID_CBaz1, CBaz1)
  25. END_OBJECT_MAP()
  26.  
  27. class CbazApp : public CWinApp
  28. {
  29. public:
  30.     virtual BOOL InitInstance();
  31.     virtual int ExitInstance();
  32. };
  33.  
  34. CbazApp theApp;
  35.  
  36. BOOL CbazApp::InitInstance()
  37. {
  38.     _Module.Init(ObjectMap, m_hInstance);
  39.     return CWinApp::InitInstance();
  40. }
  41.  
  42. int CbazApp::ExitInstance()
  43. {
  44.     _Module.Term();
  45.     return CWinApp::ExitInstance();
  46. }
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // Used to determine whether the DLL can be unloaded by OLE
  50.  
  51. STDAPI DllCanUnloadNow(void)
  52. {
  53.     AFX_MANAGE_STATE(AfxGetStaticModuleState());
  54.     return (AfxDllCanUnloadNow()==S_OK && _Module.GetLockCount()==0) ? S_OK : S_FALSE;
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // Returns a class factory to create an object of the requested type
  59.  
  60. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  61. {
  62.     return _Module.GetClassObject(rclsid, riid, ppv);
  63. }
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66. // DllRegisterServer - Adds entries to the system registry
  67.  
  68. STDAPI DllRegisterServer(void)
  69. {
  70.     // registers object, typelib and all interfaces in typelib
  71.     return _Module.RegisterServer(TRUE);
  72. }
  73.  
  74. /////////////////////////////////////////////////////////////////////////////
  75. // DllUnregisterServer - Removes entries from the system registry
  76.  
  77. STDAPI DllUnregisterServer(void)
  78. {
  79.     _Module.UnregisterServer();
  80.     return S_OK;
  81. }
  82.  
  83.