📄 contactsinformation.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
#ifndef _CONTACTSDATAITEM_H_215315937_ // To prevent multiple #includes
#define _CONTACTSDATAITEM_H_215315937_
#include "Includes.h"
#include "iExchangeClient.h"
#include "..\baseclass\DataRecordExtractor.h"
//Impementation of IExchangeClientContactInformation - RefCountedDataRecordList array wrapper
class CExchangeClientContactInformation :
public CComObjectRootEx<CComMultiThreadModel>,
public IExchangeClientContactInformation,
public CDataRecordExtractor
{
public:
DECLARE_NO_REGISTRY()
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(CExchangeClientContactInformation)
COM_INTERFACE_ENTRY(IExchangeClientContactInformation)
END_COM_MAP()
public:
CExchangeClientContactInformation();
virtual ~CExchangeClientContactInformation();
public:
virtual HRESULT STDMETHODCALLTYPE GetDisplayName(
WCHAR *wszNameBuffer,
UINT cchNameBuffer
);
virtual HRESULT STDMETHODCALLTYPE GetHomePhoneNumber(
WCHAR * wszNumberBuffer,
UINT cchNumberBuffer
);
virtual HRESULT STDMETHODCALLTYPE GetWorkPhoneNumber(
WCHAR *wszTitle,
UINT cchTitle
);
virtual HRESULT STDMETHODCALLTYPE GetMobilePhoneNumber(
WCHAR *wszBuffer,
UINT cchBuffer
);
virtual HRESULT STDMETHODCALLTYPE GetEmailAddress(
WCHAR *wszBuffer,
UINT cchBuffer
);
virtual HRESULT STDMETHODCALLTYPE GetHomeAddress(
WCHAR *wszBuffer,
UINT cchBuffer
);
virtual HRESULT STDMETHODCALLTYPE GetWorkAddress(
WCHAR *wszBuffer,
UINT cchBuffer
);
};
#endif // !defined _CONTACTSDATAITEM_H_215315937_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -