installdriverdlg.h

来自「方便的驱动/服务的安装/卸载/启动/停止等的管理工具」· C头文件 代码 · 共 61 行

H
61
字号
// InstallDriverDlg.h : header file
//

#if !defined(AFX_INSTALLDRIVERDLG_H__E8077863_F134_49D6_9480_07044FF26086__INCLUDED_)
#define AFX_INSTALLDRIVERDLG_H__E8077863_F134_49D6_9480_07044FF26086__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CInstallDriverDlg dialog
#define PRODUCT_NAME		"LazyBaby 驱动/服务管理工具"
class CInstallDriverDlg : public CDialog
{
// Construction
public:
	char m_cDstFile[MAX_PATH];
	CInstallDriverDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CInstallDriverDlg)
	enum { IDD = IDD_INSTALLDRIVER_DIALOG };
	CComboBox	m_cStartType;
	CString	m_cDriverName;
	CString	m_cFilePath;
	CString	m_strStartParam;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CInstallDriverDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnGetFilePath();
	afx_msg void OnInstall();
	afx_msg void OnUninstall();
	afx_msg void OnStartServer();
	afx_msg void OnStopService();
	afx_msg void OnButton1();
	afx_msg void OnAbout();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_INSTALLDRIVERDLG_H__E8077863_F134_49D6_9480_07044FF26086__INCLUDED_)

⌨️ 快捷键说明

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