📄 cshellextclassfactory.h
字号:
//////////////////////////////////////////////////////////////////////////////
// CShellExtClassFactory.h
//
// Declarations CShellExtClassFactory.cpp.
//////////////////////////////////////////////////////////////////////////////
// $Id: CShellExtClassFactory.h,v 1.3 1998/12/14 19:00:45 nryan Exp $
// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.
#ifndef Included_CShellExtClassFactory_h // [
#define Included_CShellExtClassFactory_h
//////////////////////////////
// Class CShellExtClassFactory
//////////////////////////////
// This class factory object creates context menu handlers.
class CShellExtClassFactory : public IClassFactory
{
public:
CShellExtClassFactory();
~CShellExtClassFactory();
// IUnknown members.
STDMETHODIMP QueryInterface(REFIID riid , LPVOID FAR* ppv);
STDMETHODIMP_(ULONG) AddRef();
STDMETHODIMP_(ULONG) Release();
// IClassFactory members.
STDMETHODIMP CreateInstance(LPUNKNOWN pUnkOuter, REFIID riid,
LPVOID FAR *ppvObj);
STDMETHODIMP LockServer(BOOL);
protected:
ULONG mRefCount; // ref count for the object
};
typedef CShellExtClassFactory *LPCSHELLEXTCLASSFACTORY;
#endif // ] Included_CShellExtClassFactory_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -