process.cpp
来自「大量windows shell编程例子」· C++ 代码 · 共 45 行
CPP
45 行
// Process.cpp : Implementation of CProcess
#include "stdafx.h"
#include "ProcFind.h"
#include "Process.h"
/////////////////////////////////////////////////////////////////////////////
// CProcess
// QueryContextMenu
HRESULT CProcess::QueryContextMenu( HMENU hmenu, UINT indexMenu,
UINT idCmdFirst, UINT idCmdLast, UINT uFlags )
{
return S_OK;
}
// InvokeCommand
HRESULT CProcess::InvokeCommand( LPCMINVOKECOMMANDINFO lpcmi )
{
m_Dlg.DoModal();
return S_OK;
}
// GetCommandString
HRESULT CProcess::GetCommandString( UINT idCmd, UINT uFlags,
UINT *pwReserved, LPSTR pszText, UINT cchMax )
{
return S_OK;
}
// Initialize
HRESULT CProcess::Initialize( LPCITEMIDLIST pidlFolder,
LPDATAOBJECT lpdobj, HKEY hKeyProgID )
{
return S_OK;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?