FileSwitch.cpp
上传用户:hell82222
上传日期:2013-12-19
资源大小:1872k
文件大小:4k
源码类别:

CAD

开发平台:

Visual C++

  1. // FileSwitch.cpp : Defines the initialization routines for the DLL.
  2. //
  3. #include "stdafx.h"
  4. #include "FileSwitch.h"
  5. #include "Reader.h"
  6. #include "AfxCtl.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. //
  13. // Note!
  14. //
  15. // If this DLL is dynamically linked against the MFC
  16. // DLLs, any functions exported from this DLL which
  17. // call into MFC must have the AFX_MANAGE_STATE macro
  18. // added at the very beginning of the function.
  19. //
  20. // For example:
  21. //
  22. // extern "C" BOOL PASCAL EXPORT ExportedFunction()
  23. // {
  24. // AFX_MANAGE_STATE(AfxGetStaticModuleState());
  25. // // normal function body here
  26. // }
  27. //
  28. // It is very important that this macro appear in each
  29. // function, prior to any calls into MFC.  This means that
  30. // it must appear as the first statement within the 
  31. // function, even before any object variable declarations
  32. // as their constructors may generate calls into the MFC
  33. // DLL.
  34. //
  35. // Please see MFC Technical Notes 33 and 58 for additional
  36. // details.
  37. //
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CFileSwitchApp
  40. BEGIN_MESSAGE_MAP(CFileSwitchApp, CWinApp)
  41. //{{AFX_MSG_MAP(CFileSwitchApp)
  42. // NOTE - the ClassWizard will add and remove mapping macros here.
  43. //    DO NOT EDIT what you see in these blocks of generated code!
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CFileSwitchApp construction
  48. CFileSwitchApp::CFileSwitchApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CFileSwitchApp object
  55. CFileSwitchApp theApp;
  56. extern CStdioFile g_CensorialFile;
  57. extern int g_mode;
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CFileSwitchApp initialization
  60. BOOL CFileSwitchApp::InitInstance()
  61. {
  62. // Register all OLE server (factories) as running.  This enables the
  63. //  OLE libraries to create objects from other applications.
  64. COleObjectFactory::RegisterAll();
  65. g_mode=0;
  66. return TRUE;
  67. }
  68. int CFileSwitchApp::ExitInstance() 
  69. {
  70. // TODO: Add your specialized code here and/or call the base class
  71. return CWinApp::ExitInstance();
  72. }
  73. void CFileSwitchApp::SetUserRegistryKey(CString strRegistryKey)
  74. {
  75. m_pszRegistryKey=NULL;
  76. SetRegistryKey(strRegistryKey);
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // Special entry points required for inproc servers
  80. STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
  81. {
  82. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  83. return AfxDllGetClassObject(rclsid, riid, ppv);
  84. }
  85. STDAPI DllCanUnloadNow(void)
  86. {
  87. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  88. return AfxDllCanUnloadNow();
  89. }
  90. // by exporting DllRegisterServer, you can use regsvr.exe
  91. STDAPI DllRegisterServer(void)
  92. {
  93. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  94. COleObjectFactory::UpdateRegistryAll();
  95. return S_OK;
  96. }
  97. STDAPI DllUnregisterServer(void)
  98. {
  99. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  100. const GUID guid1={0xB4CAB403,0x44A6,0x4287,{0xB9,0xA3,0x3F,0xE0,0x32,0xC6,0x41,0x34}};
  101. const GUID guid2={0x91D9C15B,0x57BC,0x4A00,{0xAA,0xFB,0x61,0x24,0x0A,0xDA,0x05,0x23}};
  102. const GUID guid3={0x2848550E,0x02EB,0x448C,{0x90,0x1D,0xCA,0x78,0x70,0xDB,0xA6,0xCC}};
  103. const GUID guid4={0xB4CAB403,0x44A6,0x4287,{0xB9,0xA3,0x3F,0xE0,0x32,0xC6,0x41,0x34}};
  104. BOOL bResult=AfxOleUnregisterClass(guid1, "FileSwitch.ConvIges2Kmg");
  105. bResult&=AfxOleUnregisterClass(guid2, "FileSwitch.ConvKmg2Iges");
  106. bResult&=AfxOleUnregisterClass(guid3, "FileSwitch.ConvKmg2Dwg");
  107. bResult&=AfxOleUnregisterClass(guid4, "FileSwitch.ConvDwg2Kmg");
  108. if(bResult)
  109. return S_OK;
  110. return S_FALSE;
  111. }