⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pctestview.h

📁 有关树WDM 驱动的编程.里面包含了许多实例,学习硬件的可以参考哦
💻 H
字号:
// pctestView.h : interface of the CPctestView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_PCTESTVIEW_H__6F49FAD0_4F34_11D4_88C3_A76D953B715A__INCLUDED_)
#define AFX_PCTESTVIEW_H__6F49FAD0_4F34_11D4_88C3_A76D953B715A__INCLUDED_

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


class CPctestView : public CView
{
protected: // create from serialization only
	CPctestView();
	DECLARE_DYNCREATE(CPctestView)

// Attributes
public:
	CPctestDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPctestView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CPctestView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CPctestView)
	afx_msg void OnOne();
	afx_msg void OnTwo();
	afx_msg void On8255();
	afx_msg void On8255Led();
	afx_msg void OnFour();
	afx_msg void OnPckey();
	afx_msg void OnDisplayKey();
	afx_msg void On8253();
	afx_msg void OnWave();
	afx_msg void OnRam();
	afx_msg void OnInt();
	afx_msg void On8250();
	afx_msg void On8255Keyboard();
	afx_msg void On8259();
	afx_msg void On0832();
	afx_msg void OnPci();
	afx_msg void OnBujin();
	afx_msg void OnCewen();
	afx_msg void OnDcmotor();
	afx_msg void OnDianzhen();
	afx_msg void On32bit();
	afx_msg void OnDma();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in pctestView.cpp
inline CPctestDoc* CPctestView::GetDocument()
   { return (CPctestDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_PCTESTVIEW_H__6F49FAD0_4F34_11D4_88C3_A76D953B715A__INCLUDED_)

⌨️ 快捷键说明

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