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

📄 cmaindlg.h

📁 一个windows 文件系统驱动源码
💻 H
字号:

 /*                                                                            
  *		Copyright (c) 2001 - 2003 Satish Kumar J (vsat_in@yahoo.com)
  *
  *		Project:		Win2fs
  *                                                                            
  *		Module Name:	\GUI\MainApp\CMainDlg.h
  *                                                                            
  *		Abstract:		Header for the dialog class.
  *
  *		Notes:			None  
  *
  *		Revision History:
  *
  *		Date		Version		Author				Change Log
  *		------------------------------------------------------------------------
  *
  *		03-DEC-05	0.0.1		Satish Kumar J		Initial Version
  */                          		

 #ifndef	__CMAINDLG_H
 #define	__CMAINDLG_H

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

 // Includes.
 
 #include "StdAfx.h"

 #include "Utils.h"

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

 // Global declarations.

 class CMainDlg : public CDialog
 {
    public:

        CMainDlg ();
        virtual ~CMainDlg ();
        
		afx_msg VOID OnClose ();
		afx_msg VOID OnPaint ();
		afx_msg BOOL OnInitDialog ();
		afx_msg BOOL OnNotify(NMHDR*, LRESULT*); 

		afx_msg VOID OnClickAbout ();
		afx_msg VOID OnClickMount ();
		afx_msg VOID OnClickRefresh ();
		afx_msg VOID OnClickInfo ();
		afx_msg VOID OnClickClose ();

	protected:

        HICON			m_hIcon;
		CListCtrl		m_ListCtrl;
		PARTITION_INFO	m_Partitions[MAX_PART_RECORDS];

		BOOL  OnMount ();
		BOOL  OnUnMount ();
		BOOL  InitControls ();
		VOID  PopulateListControl ();
		__U32 OnListSelectionChange ();

	DECLARE_MESSAGE_MAP ()
 };

 /////////////////////////////////////////////////////////////////////////////
 
 #endif		// __CMAINDLG_H

⌨️ 快捷键说明

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