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

Windows编程

开发平台:

Visual C++

  1. // image.cpp : Implementation of CImageApp and DLL registration.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "image.h"
  14. #ifdef _DEBUG
  15. #define new DEBUG_NEW
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. CImageApp NEAR theApp;
  20. const GUID CDECL BASED_CODE _tlid =
  21. { 0x346685e0, 0xc383, 0x11cf, { 0xa5, 0xa4, 0, 0xaa, 0, 0xa4, 0x57, 0x5 } };
  22. const WORD _wVerMajor = 1;
  23. const WORD _wVerMinor = 0;
  24. ////////////////////////////////////////////////////////////////////////////
  25. // CImageApp::InitInstance - DLL initialization
  26. BOOL CImageApp::InitInstance()
  27. {
  28. BOOL bInit = COleControlModule::InitInstance();
  29. return bInit;
  30. }
  31. ////////////////////////////////////////////////////////////////////////////
  32. // CImageApp::ExitInstance - DLL termination
  33. int CImageApp::ExitInstance()
  34. {
  35. return COleControlModule::ExitInstance();
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // DllRegisterServer - Adds entries to the system registry
  39. STDAPI DllRegisterServer(void)
  40. {
  41. AFX_MANAGE_STATE(_afxModuleAddrThis);
  42. if (!AfxOleRegisterTypeLib(AfxGetInstanceHandle(), _tlid))
  43. return ResultFromScode(SELFREG_E_TYPELIB);
  44. if (!COleObjectFactoryEx::UpdateRegistryAll(TRUE))
  45. return ResultFromScode(SELFREG_E_CLASS);
  46. return NOERROR;
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // DllUnregisterServer - Removes entries from the system registry
  50. STDAPI DllUnregisterServer(void)
  51. {
  52. AFX_MANAGE_STATE(_afxModuleAddrThis);
  53. if (!AfxOleUnregisterTypeLib(_tlid, _wVerMajor, _wVerMinor))
  54. return ResultFromScode(SELFREG_E_TYPELIB);
  55. if (!COleObjectFactoryEx::UpdateRegistryAll(FALSE))
  56. return ResultFromScode(SELFREG_E_CLASS);
  57. return NOERROR;
  58. }