⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 visvim.cpp

📁 VIM文本编辑器
💻 CPP
字号:
// VisVim.cpp : Defines the initialization routines for the DLL.
//

#include "stdafx.h"
#include <initguid.h>
#include "VisVim.h"
#include "DSAddIn.h"
#include "Commands.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;

#endif

CComModule _Module;

BEGIN_OBJECT_MAP (ObjectMap)
OBJECT_ENTRY (CLSID_DSAddIn, CDSAddIn)
END_OBJECT_MAP ()

class CVisVimApp : public CWinApp
{
    public:
	CVisVimApp ();

	//{{AFX_VIRTUAL(CVisVimApp)
    public:
	virtual BOOL InitInstance ();
	virtual int ExitInstance ();
	//}}AFX_VIRTUAL

	//{{AFX_MSG(CVisVimApp)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP ()
};

BEGIN_MESSAGE_MAP (CVisVimApp, CWinApp)
//{{AFX_MSG_MAP(CVisVimApp)
//}}AFX_MSG_MAP
END_MESSAGE_MAP ()

// The one and only CVisVimApp object
CVisVimApp theApp;

CVisVimApp::CVisVimApp ()
{
}

BOOL CVisVimApp::InitInstance ()
{
	_Module.Init (ObjectMap, m_hInstance);
	return CWinApp::InitInstance ();
}

int CVisVimApp::ExitInstance ()
{
	_Module.Term ();
	return CWinApp::ExitInstance ();
}

// Special entry points required for inproc servers
//

STDAPI DllGetClassObject (REFCLSID rclsid, REFIID riid, LPVOID * ppv)
{
	AFX_MANAGE_STATE (AfxGetStaticModuleState ());
	return _Module.GetClassObject (rclsid, riid, ppv);
}

STDAPI DllCanUnloadNow (void)
{
	AFX_MANAGE_STATE (AfxGetStaticModuleState ());
	return (AfxDllCanUnloadNow () == S_OK && _Module.GetLockCount () == 0)
		? S_OK : S_FALSE;
}

// By exporting DllRegisterServer, you can use regsvr32.exe
//
STDAPI DllRegisterServer (void)
{
	AFX_MANAGE_STATE (AfxGetStaticModuleState ());
	HRESULT hRes;
	OSVERSIONINFO osInfo;

	osInfo.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
	GetVersionEx (&osInfo);

	// Registers object, typelib and all interfaces in typelib
	hRes = _Module.RegisterServer (TRUE);

	if (!FAILED (hRes))
	{
		_ATL_OBJMAP_ENTRY *pEntry = _Module.m_pObjMap;
		CRegKey key;
		LONG lRes = key.Open (HKEY_CLASSES_ROOT, _T ("CLSID"));

		if (lRes == ERROR_SUCCESS)
		{
			USES_CONVERSION;
			LPOLESTR lpOleStr;

			StringFromCLSID (*pEntry->pclsid, &lpOleStr);
			LPTSTR lpsz = OLE2T (lpOleStr);

			lRes = key.Open (key, lpsz);
			if (lRes == ERROR_SUCCESS)
			{
				CString strDescription;

				strDescription.LoadString (IDS_VISVIM_DESCRIPTION);
				key.SetKeyValue (_T ("Description"), strDescription);
			}
			CoTaskMemFree (lpOleStr);
		}

		if (lRes != ERROR_SUCCESS)
			hRes = HRESULT_FROM_WIN32 (lRes);
	}

	// If you try to load the DLL from NT *WITHOUT* Admin priviledges
	// it will fail.  Right now we just assume things are okay under
	// NT but what it SHOULD do is check to make sure the registry
	// is configured properly and return error if not.
	if (FAILED (hRes) && (osInfo.dwPlatformId != VER_PLATFORM_WIN32_NT))
		return hRes;
	else
		hRes = S_OK;

	return hRes;

}

// DllUnregisterServer - Removes entries from the system registry
//
STDAPI DllUnregisterServer (void)
{
	AFX_MANAGE_STATE (AfxGetStaticModuleState ());

	HRESULT hRes = S_OK;

	_Module.UnregisterServer ();
	return hRes;
}


// Debugging support

// GetLastErrorDescription is used in the implementation of the VERIFY_OK
//  macro, defined in stdafx.h.

#ifdef _DEBUG

void GetLastErrorDescription (CComBSTR & bstr)
{
	CComPtr < IErrorInfo > pErrorInfo;
	if (GetErrorInfo (0, &pErrorInfo) == S_OK)
		pErrorInfo->GetDescription (&bstr);
}

#endif //_DEBUG

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -