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

Windows编程

开发平台:

Visual C++

  1. // CDInfo.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. // You will need the NT SUR Beta 2 SDK or VC 4.2 or higher in order
  13. // to build this project.  This is because you will need MIDL 3.00.15
  14. // or higher and new headers and libs. If you have VC 4.2 installed,
  15. // then everything should already be configured correctly.
  16. // Note: Proxy/Stub Information
  17. //      To build a separate proxy/stub DLL,
  18. //      run nmake -f CDInfops.mak in the project directory.
  19. #include "stdafx.h"
  20. #include "resource.h"
  21. #include "initguid.h"
  22. #include "CDInfo.h"
  23. #define IID_DEFINED
  24. #include "CDInfo_i.c"
  25. #include "CDInfo1.h"
  26. CComModule _Module;
  27. BEGIN_OBJECT_MAP(ObjectMap)
  28. OBJECT_ENTRY(CLSID_CCDInfo, CCDInfo)
  29. END_OBJECT_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // DLL Entry Point
  32. extern "C"
  33. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
  34. {
  35. if (dwReason == DLL_PROCESS_ATTACH)
  36. {
  37. _Module.Init(ObjectMap, hInstance);
  38. DisableThreadLibraryCalls(hInstance);
  39. }
  40. else if (dwReason == DLL_PROCESS_DETACH)
  41. _Module.Term();
  42. return TRUE;    // ok
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // Used to determine whether the DLL can be unloaded by OLE
  46. STDAPI DllCanUnloadNow(void)
  47. {
  48. return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // Returns a class factory to create an object of the requested type
  52. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  53. {
  54. return _Module.GetClassObject(rclsid, riid, ppv);
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // DllRegisterServer - Adds entries to the system registry
  58. STDAPI DllRegisterServer(void)
  59. {
  60. // registers object, typelib and all interfaces in typelib
  61. return _Module.RegisterServer(TRUE);
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // DllUnregisterServer - Removes entries from the system registry
  65. STDAPI DllUnregisterServer(void)
  66. {
  67. _Module.UnregisterServer();
  68. return S_OK;
  69. }