litepage.cpp

来自「outlook 插件 在outlook 中添加弹出试菜单」· C++ 代码 · 共 45 行

CPP
45
字号

////////////////////////////////////////////////////////////////////////////
//	Copyright : Amit Dey 2002
//
//	Email :amitdey@joymail.com
//
//	This code may be used in compiled form in any way you desire. This
//	file may be redistributed unmodified by any means PROVIDING it is 
//	not sold for profit without the authors written consent, and 
//	providing that this notice and the authors name is included.
//
//	This file is provided 'as is' with no expressed or implied warranty.
//	The author accepts no liability if it causes any damage to your computer.
//
//	Do expect bugs.
//	Please let me know of any bugs/mods/improvements.
//	and I will try to fix/incorporate them into this file.
//	Enjoy!
//
//	Description : Outlook2K Addin 
////////////////////////////////////////////////////////////////////////////

// LitePage.cpp : Implementation of CLitePage

#include "stdafx.h"
#include "OutlookAddin.h"
#include "LitePage.h"

/////////////////////////////////////////////////////////////////////////////
// CLitePage

STDMETHODIMP CLitePage::SetClientSite(IOleClientSite *pSite)
{
	ATLTRACE("SetClientSite");
	if(pSite!=NULL)
	IOleObjectImpl<CLitePage>::SetClientSite(pSite);
	
	return S_OK;

	
}
STDMETHODIMP CLitePage::GetControlInfo(LPCONTROLINFO pCI)
{
	return S_OK;	
}

⌨️ 快捷键说明

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