processwatcheddialog.h

来自「关于进程&线程查看器 用过vc++自带的Process Viewer」· C头文件 代码 · 共 51 行

H
51
字号
#if !defined(AFX_PROCESSWATCHEDDIALOG_H__B52A7577_ED11_49C4_B5CD_AA03AED3BA7E__INCLUDED_)
#define AFX_PROCESSWATCHEDDIALOG_H__B52A7577_ED11_49C4_B5CD_AA03AED3BA7E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ProcessWatchedDialog.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CProcessWatchedDialog dialog

class CProcessWatchedDialog : public CDialog
{
// Construction
public:
	CProcessWatchedDialog(CWnd* pParent = NULL);   // standard constructor
    BOOL SetSelectedProcessPriority(HANDLE hProcess,CString strPriority);
// Dialog Data
	//{{AFX_DATA(CProcessWatchedDialog)
	enum { IDD = IDD_DIALOG_SET_PROCESS_WATCHED };
	
	CString	m_strProcessWatched;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CProcessWatchedDialog)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CProcessWatchedDialog)
	virtual void OnOK();
	virtual BOOL OnInitDialog();
	afx_msg void OnEditchangeCombo1();
	afx_msg void OnListDropDownCombo1();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PROCESSWATCHEDDIALOG_H__B52A7577_ED11_49C4_B5CD_AA03AED3BA7E__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?