IShellExtInitImpl.h
资源名称:16x.rar [点击查看]
上传用户:aiweisk
上传日期:2007-05-01
资源大小:85k
文件大小:1k
源码类别:
编辑器/阅读器
开发平台:
DOS
- //-------------------------------------------------------------------------------------
- // Quick Hex Shell extension
- // Copyright (c) 2000 by Shanker.C
- // All rights reserved
- // Author's consent required if this program is to be used for commercial purposes
- // No warranty of any kind, expressed or implied, is included with this
- // software; use at your own risk, responsibility for damages (if any) to
- // anyone resulting from the use of this software rests entirely with the user.
- // Please send comments/suggestions/criticisms to: Shanker@xlprint.com
- // March 7, 2000
- //---------------------------------------------------------------------------------------
- #ifndef _SHELLEXTIMPL_H_
- #define _SHELLEXTIMPL_H_
- //---------------------------------------------------------------------------------------
- #include <AtlCom.h>
- #include <ShlObj.h>
- class ATL_NO_VTABLE IShellExtInitImpl : public IShellExtInit
- {
- public:
- // IUnknown methods
- STDMETHOD(QueryInterface)(REFIID riid, void** ppvObject) = 0;
- _ATL_DEBUG_ADDREF_RELEASE_IMPL(IShellExtInitImpl)
- // IShellExtInit methods
- STDMETHOD(Initialize)(LPCITEMIDLIST, LPDATAOBJECT, HKEY)
- {
- return S_FALSE;
- }
- };
- //---------------------------------------------------------------------------------------
- #endif //_SHELLEXTIMPL_H_
- //---------------------------------------------------------------------------------------
English
