?? cmpnt3.h
字號:
//
// Cmpnt3.h - Component 3
//
#include "Iface.h"
#include "CUnknown.h" // Base class for IUnknown
///////////////////////////////////////////////////////////
//
// Component C
//
class CC : public CUnknown,
public IZ
{
public:
// Creation
static HRESULT CreateInstance(IUnknown* pUnknownOuter,
CUnknown** ppNewComponent) ;
private:
// Declare the delegating IUnknown.
DECLARE_IUNKNOWN
// Nondelegating IUnknown
virtual HRESULT __stdcall
NondelegatingQueryInterface( const IID& iid, void** ppv) ;
// Interface IZ
virtual void __stdcall Fz() ;
// Constructor
CC(IUnknown* pUnknownOuter) ;
// Destructor
~CC() ;
} ;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -