cshellextclassfactory.h
来自「vc环境下的pgp源码」· C头文件 代码 · 共 46 行
H
46 行
//////////////////////////////////////////////////////////////////////////////
// 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 + =
减小字号Ctrl + -
显示快捷键?